Index: content/public/browser/web_contents_delegate.cc |
diff --git a/content/public/browser/web_contents_delegate.cc b/content/public/browser/web_contents_delegate.cc |
index 9a2a95030bb6c0820407a1821f968872dcf3bb62..a34e35a55118e6054d4a4cfdb848d0f66dc2f37d 100644 |
--- a/content/public/browser/web_contents_delegate.cc |
+++ b/content/public/browser/web_contents_delegate.cc |
@@ -55,11 +55,15 @@ void WebContentsDelegate::BeforeUnloadFired(WebContents* web_contents, |
*proceed_to_fire_unload = true; |
} |
+bool WebContentsDelegate::ShouldFocusLocationBarByDefault(WebContents* source) { |
+ return false; |
+} |
+ |
bool WebContentsDelegate::ShouldFocusPageAfterCrash() { |
return true; |
} |
-bool WebContentsDelegate::TakeFocus(WebContents* soruce, bool reverse) { |
+bool WebContentsDelegate::TakeFocus(WebContents* source, bool reverse) { |
return false; |
} |