| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ | 5 #ifndef EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ |
| 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ | 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/task/cancelable_task_tracker.h" | 12 #include "base/task/cancelable_task_tracker.h" |
| 13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 14 #include "content/public/browser/browser_main_parts.h" | 14 #include "content/public/browser/browser_main_parts.h" |
| 15 #include "content/public/common/main_function_params.h" | 15 #include "content/public/common/main_function_params.h" |
| 16 #include "ui/aura/window_tree_host_observer.h" | 16 #include "ui/aura/window_tree_host_observer.h" |
| 17 | 17 |
| 18 class PrefService; | 18 class PrefService; |
| 19 | 19 |
| 20 namespace content { | 20 namespace content { |
| 21 class BrowserContext; | 21 class BrowserContext; |
| 22 struct MainFunctionParams; | 22 struct MainFunctionParams; |
| 23 } | 23 } |
| 24 | 24 |
| 25 namespace views { | |
| 26 class Widget; | |
| 27 } | |
| 28 | |
| 29 namespace extensions { | 25 namespace extensions { |
| 30 | 26 |
| 31 class AppWindowClient; | 27 class AppWindowClient; |
| 32 class DesktopController; | 28 class DesktopController; |
| 33 class ExtensionsBrowserClient; | 29 class ExtensionsBrowserClient; |
| 34 class ExtensionsClient; | 30 class ExtensionsClient; |
| 35 class ShellBrowserContext; | 31 class ShellBrowserContext; |
| 36 class ShellBrowserMainDelegate; | 32 class ShellBrowserMainDelegate; |
| 37 class ShellDeviceClient; | 33 class ShellDeviceClient; |
| 38 class ShellExtensionSystem; | 34 class ShellExtensionSystem; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 #if !defined(DISABLE_NACL) | 103 #if !defined(DISABLE_NACL) |
| 108 base::CancelableTaskTracker task_tracker_; | 104 base::CancelableTaskTracker task_tracker_; |
| 109 #endif | 105 #endif |
| 110 | 106 |
| 111 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); | 107 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); |
| 112 }; | 108 }; |
| 113 | 109 |
| 114 } // namespace extensions | 110 } // namespace extensions |
| 115 | 111 |
| 116 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ | 112 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ |
| OLD | NEW |