| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 ASH_SHELL_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_ | 5 #ifndef ASH_SHELL_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_ |
| 6 #define ASH_SHELL_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_ | 6 #define ASH_SHELL_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "content/public/browser/browser_main_parts.h" | 11 #include "content/public/browser/browser_main_parts.h" |
| 12 | 12 |
| 13 namespace base { | |
| 14 class Thread; | |
| 15 } | |
| 16 | |
| 17 namespace content { | 13 namespace content { |
| 18 class ShellBrowserContext; | 14 class ShellBrowserContext; |
| 19 struct MainFunctionParams; | 15 struct MainFunctionParams; |
| 20 } | 16 } |
| 21 | 17 |
| 22 namespace net { | 18 namespace net { |
| 23 class NetLog; | 19 class NetLog; |
| 24 } | 20 } |
| 25 | 21 |
| 26 namespace views { | 22 namespace views { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 ShellDelegateImpl* delegate_; // owned by Shell | 58 ShellDelegateImpl* delegate_; // owned by Shell |
| 63 std::unique_ptr<wm::WMState> wm_state_; | 59 std::unique_ptr<wm::WMState> wm_state_; |
| 64 | 60 |
| 65 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); | 61 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); |
| 66 }; | 62 }; |
| 67 | 63 |
| 68 } // namespace shell | 64 } // namespace shell |
| 69 } // namespace ash | 65 } // namespace ash |
| 70 | 66 |
| 71 #endif // ASH_SHELL_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_ | 67 #endif // ASH_SHELL_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_ |
| OLD | NEW |