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 #ifndef APPS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ | 5 #ifndef APPS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ |
6 #define APPS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ | 6 #define APPS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "content/public/browser/browser_main_parts.h" | 11 #include "content/public/browser/browser_main_parts.h" |
12 #include "ui/aura/root_window_observer.h" | 12 #include "ui/aura/root_window_observer.h" |
13 | 13 |
14 namespace aura { | 14 namespace aura { |
15 class TestScreen; | 15 class TestScreen; |
16 } | 16 } |
17 | 17 |
18 namespace content { | 18 namespace content { |
19 class ShellBrowserContext; | 19 class ShellBrowserContext; |
| 20 class ShellDevToolsDelegate; |
20 struct MainFunctionParams; | 21 struct MainFunctionParams; |
21 } | 22 } |
22 | 23 |
23 namespace extensions { | 24 namespace extensions { |
24 class ShellExtensionsBrowserClient; | 25 class ShellExtensionsBrowserClient; |
25 class ShellExtensionSystem; | 26 class ShellExtensionSystem; |
26 } | 27 } |
27 | 28 |
28 namespace views { | 29 namespace views { |
29 class Widget; | 30 class Widget; |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 extensions_browser_client_; | 92 extensions_browser_client_; |
92 scoped_ptr<net::NetLog> net_log_; | 93 scoped_ptr<net::NetLog> net_log_; |
93 | 94 |
94 // Enable a minimal set of views::corewm to be initialized. | 95 // Enable a minimal set of views::corewm to be initialized. |
95 scoped_ptr<wm::WMTestHelper> wm_test_helper_; | 96 scoped_ptr<wm::WMTestHelper> wm_test_helper_; |
96 | 97 |
97 scoped_ptr<aura::TestScreen> test_screen_; | 98 scoped_ptr<aura::TestScreen> test_screen_; |
98 | 99 |
99 scoped_ptr<views::Widget> webview_window_; | 100 scoped_ptr<views::Widget> webview_window_; |
100 | 101 |
| 102 scoped_ptr<content::ShellDevToolsDelegate> devtools_delegate_; |
| 103 |
101 // Owned by the BrowserContextKeyedService system. | 104 // Owned by the BrowserContextKeyedService system. |
102 extensions::ShellExtensionSystem* extension_system_; | 105 extensions::ShellExtensionSystem* extension_system_; |
103 | 106 |
104 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); | 107 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); |
105 }; | 108 }; |
106 | 109 |
107 } // namespace apps | 110 } // namespace apps |
108 | 111 |
109 #endif // APPS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ | 112 #endif // APPS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ |
OLD | NEW |