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

Side by Side Diff: content/shell/browser/shell_aura.cc

Issue 2132983002: Move content shell context menu to ShellWebContentsViewDelegate in Views (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed cast_shell_linux compile error Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/shell/browser/shell.h" 5 #include "content/shell/browser/shell.h"
6 6
7 #include "content/public/browser/web_contents.h" 7 #include "content/public/browser/web_contents.h"
8 #include "content/shell/browser/shell_platform_data_aura.h" 8 #include "content/shell/browser/shell_platform_data_aura.h"
9 #include "ui/aura/env.h" 9 #include "ui/aura/env.h"
10 #include "ui/aura/test/test_screen.h" 10 #include "ui/aura/test/test_screen.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 void Shell::PlatformResizeSubViews() { 59 void Shell::PlatformResizeSubViews() {
60 } 60 }
61 61
62 void Shell::Close() { 62 void Shell::Close() {
63 delete this; 63 delete this;
64 } 64 }
65 65
66 void Shell::PlatformSetTitle(const base::string16& title) { 66 void Shell::PlatformSetTitle(const base::string16& title) {
67 } 67 }
68 68
69 bool Shell::PlatformHandleContextMenu(
70 const content::ContextMenuParams& params) {
71 return false;
72 }
73
74 } // namespace content 69 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/browser/shell_android.cc ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698