Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Unified Diff: content/public/browser/web_contents_view_delegate.cc

Issue 659233002: STASH: Epic Experimental patch for toolkit-views App List on Mac Base URL: https://chromium.googlesource.com/chromium/src.git/+/master
Patch Set: Fix a few things. Works@master Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(
« no previous file with comments | « content/public/browser/web_contents_view_delegate.h ('k') | content/shell/browser/shell_content_browser_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698