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 ui { | 14 namespace ui { |
15 class ContextFactory; | 15 class ContextFactory; |
16 } | 16 } |
17 | 17 |
18 namespace ash { | 18 namespace ash { |
19 | 19 |
20 class ShellDelegate; | 20 class ShellDelegate; |
21 | 21 |
22 struct ASH_EXPORT ShellInitParams { | 22 struct ASH_EXPORT ShellInitParams { |
23 ShellDelegate* delegate = nullptr; | 23 ShellDelegate* delegate = nullptr; |
24 ui::ContextFactory* context_factory = nullptr; | 24 ui::ContextFactory* context_factory = nullptr; |
| 25 ui::ContextFactoryPrivate* context_factory_private = nullptr; |
25 base::SequencedWorkerPool* blocking_pool = nullptr; | 26 base::SequencedWorkerPool* blocking_pool = nullptr; |
26 }; | 27 }; |
27 | 28 |
28 } // namespace ash | 29 } // namespace ash |
29 | 30 |
30 #endif // ASH_SHELL_INIT_PARAMS_H_ | 31 #endif // ASH_SHELL_INIT_PARAMS_H_ |
OLD | NEW |