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 wm { | 29 namespace wm { |
29 class WMTestHelper; | 30 class WMTestHelper; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 scoped_ptr<ShellBrowserContext> browser_context_; | 81 scoped_ptr<ShellBrowserContext> browser_context_; |
81 scoped_ptr<ShellExtensionsClient> extensions_client_; | 82 scoped_ptr<ShellExtensionsClient> extensions_client_; |
82 scoped_ptr<extensions::ShellExtensionsBrowserClient> | 83 scoped_ptr<extensions::ShellExtensionsBrowserClient> |
83 extensions_browser_client_; | 84 extensions_browser_client_; |
84 | 85 |
85 // Enable a minimal set of views::corewm to be initialized. | 86 // Enable a minimal set of views::corewm to be initialized. |
86 scoped_ptr<wm::WMTestHelper> wm_test_helper_; | 87 scoped_ptr<wm::WMTestHelper> wm_test_helper_; |
87 | 88 |
88 scoped_ptr<aura::TestScreen> test_screen_; | 89 scoped_ptr<aura::TestScreen> test_screen_; |
89 | 90 |
| 91 scoped_ptr<content::ShellDevToolsDelegate> devtools_delegate_; |
| 92 |
90 // Owned by the BrowserContextKeyedService system. | 93 // Owned by the BrowserContextKeyedService system. |
91 extensions::ShellExtensionSystem* extension_system_; | 94 extensions::ShellExtensionSystem* extension_system_; |
92 | 95 |
93 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); | 96 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); |
94 }; | 97 }; |
95 | 98 |
96 } // namespace apps | 99 } // namespace apps |
97 | 100 |
98 #endif // APPS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ | 101 #endif // APPS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ |
OLD | NEW |