Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: ash/shell_init_params.h

Issue 2563783002: ui + mus: Split ContextFactory into ContextFactory(Client) and ContextFactoryPrivate (Closed)
Patch Set: Restore mash Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/shell/content/client/shell_browser_main_parts.cc ('k') | ash/test/ash_test_helper.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_
OLDNEW
« no previous file with comments | « ash/shell/content/client/shell_browser_main_parts.cc ('k') | ash/test/ash_test_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698