| Index: chrome/browser/views/tab_contents/tab_contents_view_win.cc
|
| ===================================================================
|
| --- chrome/browser/views/tab_contents/tab_contents_view_win.cc (revision 18770)
|
| +++ chrome/browser/views/tab_contents/tab_contents_view_win.cc (working copy)
|
| @@ -326,7 +326,8 @@
|
| }
|
|
|
| void TabContentsViewWin::GotFocus() {
|
| - tab_contents()->delegate()->TabContentsFocused(tab_contents());
|
| + if (tab_contents()->delegate())
|
| + tab_contents()->delegate()->TabContentsFocused(tab_contents());
|
| }
|
|
|
| void TabContentsViewWin::TakeFocus(bool reverse) {
|
|
|