Index: content/public/browser/web_contents_view_delegate.cc |
diff --git a/content/public/browser/web_contents_view_delegate.cc b/content/public/browser/web_contents_view_delegate.cc |
index e582621be3f839f75b0d65a09f85c668d172f43a..db20912a5ea40b7b684da653ee90b9305874087f 100644 |
--- a/content/public/browser/web_contents_view_delegate.cc |
+++ b/content/public/browser/web_contents_view_delegate.cc |
@@ -20,17 +20,20 @@ void WebContentsViewDelegate::ShowContextMenu( |
const ContextMenuParams& params) { |
} |
-void WebContentsViewDelegate::StoreFocus() { |
+bool WebContentsViewDelegate::StoreFocus() { |
+ return false; |
} |
-void WebContentsViewDelegate::RestoreFocus() { |
+bool WebContentsViewDelegate::RestoreFocus() { |
+ return false; |
} |
bool WebContentsViewDelegate::Focus() { |
return false; |
} |
-void WebContentsViewDelegate::TakeFocus(bool reverse) { |
+bool WebContentsViewDelegate::TakeFocus(bool reverse) { |
+ return false; |
} |
void WebContentsViewDelegate::ShowDisambiguationPopup( |