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

Side by Side Diff: ash/shell_init_params.h

Issue 2381753002: Use mojo SystemTray interfaces for both mash and classic ash (Closed)
Patch Set: Restructure based on feedback Created 4 years, 2 months 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
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 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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698