| 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 ASH_SHELL_INIT_PARAMS_H_ | 5 #ifndef ASH_SHELL_INIT_PARAMS_H_ |
| 6 #define ASH_SHELL_INIT_PARAMS_H_ | 6 #define ASH_SHELL_INIT_PARAMS_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 | 9 |
| 10 namespace base { | 10 namespace base { |
| 11 class SequencedWorkerPool; | 11 class SequencedWorkerPool; |
| 12 } | 12 } |
| 13 | 13 |
| 14 namespace shell { |
| 15 class Connector; |
| 16 } |
| 17 |
| 14 namespace ui { | 18 namespace ui { |
| 15 class ContextFactory; | 19 class ContextFactory; |
| 16 } | 20 } |
| 17 | 21 |
| 18 namespace ash { | 22 namespace ash { |
| 19 | 23 |
| 20 class ShellDelegate; | 24 class ShellDelegate; |
| 21 | 25 |
| 22 struct ASH_EXPORT ShellInitParams { | 26 struct ASH_EXPORT ShellInitParams { |
| 23 ShellDelegate* delegate = nullptr; | 27 ShellDelegate* delegate = nullptr; |
| 24 ui::ContextFactory* context_factory = nullptr; | 28 ui::ContextFactory* context_factory = nullptr; |
| 25 base::SequencedWorkerPool* blocking_pool = nullptr; | 29 base::SequencedWorkerPool* blocking_pool = nullptr; |
| 30 ::shell::Connector* connector = nullptr; |
| 26 }; | 31 }; |
| 27 | 32 |
| 28 } // namespace ash | 33 } // namespace ash |
| 29 | 34 |
| 30 #endif // ASH_SHELL_INIT_PARAMS_H_ | 35 #endif // ASH_SHELL_INIT_PARAMS_H_ |
| OLD | NEW |