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

Side by Side Diff: chrome/browser/ui/views/ash/chrome_browser_main_extra_parts_ash.h

Issue 2839933005: mash: Merge ChromeLauncherController and *Impl subclass. (Closed)
Patch Set: Address comments. Created 3 years, 7 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 (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 CHROME_BROWSER_UI_VIEWS_ASH_CHROME_BROWSER_MAIN_EXTRA_PARTS_ASH_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_ASH_CHROME_BROWSER_MAIN_EXTRA_PARTS_ASH_H_
6 #define CHROME_BROWSER_UI_VIEWS_ASH_CHROME_BROWSER_MAIN_EXTRA_PARTS_ASH_H_ 6 #define CHROME_BROWSER_UI_VIEWS_ASH_CHROME_BROWSER_MAIN_EXTRA_PARTS_ASH_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "chrome/browser/chrome_browser_main_extra_parts.h" 11 #include "chrome/browser/chrome_browser_main_extra_parts.h"
12 12
13 namespace ash { 13 namespace ash {
14 class ShelfModel; 14 class ShelfModel;
15 } 15 }
16 16
17 class AshInit; 17 class AshInit;
18 class CastConfigClientMediaRouter; 18 class CastConfigClientMediaRouter;
19 class ChromeLauncherControllerImpl; 19 class ChromeLauncherController;
20 class ChromeNewWindowClient; 20 class ChromeNewWindowClient;
21 class ChromeShellContentState; 21 class ChromeShellContentState;
22 class ImmersiveContextMus; 22 class ImmersiveContextMus;
23 class ImmersiveHandlerFactoryMus; 23 class ImmersiveHandlerFactoryMus;
24 class MediaClient; 24 class MediaClient;
25 class SessionControllerClient; 25 class SessionControllerClient;
26 class SystemTrayClient; 26 class SystemTrayClient;
27 class VolumeController; 27 class VolumeController;
28 class VpnListForwarder; 28 class VpnListForwarder;
29 29
(...skipping 20 matching lines...) Expand all
50 std::unique_ptr<SessionControllerClient> session_controller_client_; 50 std::unique_ptr<SessionControllerClient> session_controller_client_;
51 std::unique_ptr<SystemTrayClient> system_tray_client_; 51 std::unique_ptr<SystemTrayClient> system_tray_client_;
52 std::unique_ptr<ChromeNewWindowClient> new_window_client_; 52 std::unique_ptr<ChromeNewWindowClient> new_window_client_;
53 std::unique_ptr<VolumeController> volume_controller_; 53 std::unique_ptr<VolumeController> volume_controller_;
54 std::unique_ptr<VpnListForwarder> vpn_list_forwarder_; 54 std::unique_ptr<VpnListForwarder> vpn_list_forwarder_;
55 std::unique_ptr<AshInit> ash_init_; 55 std::unique_ptr<AshInit> ash_init_;
56 56
57 // These are only used in Mash; corresponding instances are owned by Ash's 57 // These are only used in Mash; corresponding instances are owned by Ash's
58 // ShelfController and ChromeShellDelegate in classic Ash. 58 // ShelfController and ChromeShellDelegate in classic Ash.
59 std::unique_ptr<ash::ShelfModel> chrome_shelf_model_; 59 std::unique_ptr<ash::ShelfModel> chrome_shelf_model_;
60 std::unique_ptr<ChromeLauncherControllerImpl> chrome_launcher_controller_; 60 std::unique_ptr<ChromeLauncherController> chrome_launcher_controller_;
61 61
62 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraPartsAsh); 62 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraPartsAsh);
63 }; 63 };
64 64
65 #endif // CHROME_BROWSER_UI_VIEWS_ASH_CHROME_BROWSER_MAIN_EXTRA_PARTS_ASH_H_ 65 #endif // CHROME_BROWSER_UI_VIEWS_ASH_CHROME_BROWSER_MAIN_EXTRA_PARTS_ASH_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698