OLD | NEW |
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 Loading... |
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 |
OLD | NEW |