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

Side by Side Diff: ash/aura/shell_port_classic.h

Issue 2808723004: Renames WmShell to ShellPort (Closed)
Patch Set: cleanup Created 3 years, 8 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_AURA_WM_SHELL_AURA_H_ 5 #ifndef ASH_AURA_SHELL_PORT_CLASSIC_H_
6 #define ASH_AURA_WM_SHELL_AURA_H_ 6 #define ASH_AURA_SHELL_PORT_CLASSIC_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "ash/ash_export.h" 10 #include "ash/ash_export.h"
11 #include "ash/display/window_tree_host_manager.h" 11 #include "ash/display/window_tree_host_manager.h"
12 #include "ash/wm_shell.h" 12 #include "ash/shell_port.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/observer_list.h" 14 #include "base/observer_list.h"
15 15
16 namespace ash { 16 namespace ash {
17 17
18 class AcceleratorControllerDelegateAura; 18 class AcceleratorControllerDelegateAura;
19 class PointerWatcherAdapter; 19 class PointerWatcherAdapter;
20 20
21 class ASH_EXPORT WmShellAura : public WmShell, 21 class ASH_EXPORT ShellPortClassic : public ShellPort,
James Cook 2017/04/10 22:00:41 While you're here can you add a brief class commen
sky 2017/04/10 22:16:25 Done.
22 public WindowTreeHostManager::Observer { 22 public WindowTreeHostManager::Observer {
23 public: 23 public:
24 WmShellAura(); 24 ShellPortClassic();
25 ~WmShellAura() override; 25 ~ShellPortClassic() override;
26 26
27 static WmShellAura* Get(); 27 static ShellPortClassic* Get();
28 28
29 AcceleratorControllerDelegateAura* accelerator_controller_delegate() { 29 AcceleratorControllerDelegateAura* accelerator_controller_delegate() {
30 return accelerator_controller_delegate_.get(); 30 return accelerator_controller_delegate_.get();
31 } 31 }
32 32
33 // WmShell: 33 // WmShell:
James Cook 2017/04/10 22:00:41 nit: ShellPort: (I wonder if a grep for WmShell w
sky 2017/04/10 22:16:25 Done.
34 void Shutdown() override; 34 void Shutdown() override;
35 bool IsRunningInMash() const override; 35 bool IsRunningInMash() const override;
36 Config GetAshConfig() const override; 36 Config GetAshConfig() const override;
37 WmWindow* GetPrimaryRootWindow() override; 37 WmWindow* GetPrimaryRootWindow() override;
38 WmWindow* GetRootWindowForDisplayId(int64_t display_id) override; 38 WmWindow* GetRootWindowForDisplayId(int64_t display_id) override;
39 const display::ManagedDisplayInfo& GetDisplayInfo( 39 const display::ManagedDisplayInfo& GetDisplayInfo(
40 int64_t display_id) const override; 40 int64_t display_id) const override;
41 bool IsActiveDisplayId(int64_t display_id) const override; 41 bool IsActiveDisplayId(int64_t display_id) const override;
42 display::Display GetFirstDisplay() const override; 42 display::Display GetFirstDisplay() const override;
43 bool IsInUnifiedMode() const override; 43 bool IsInUnifiedMode() const override;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 void OnDisplayConfigurationChanged() override; 87 void OnDisplayConfigurationChanged() override;
88 88
89 std::unique_ptr<PointerWatcherAdapter> pointer_watcher_adapter_; 89 std::unique_ptr<PointerWatcherAdapter> pointer_watcher_adapter_;
90 90
91 bool added_display_observer_ = false; 91 bool added_display_observer_ = false;
92 base::ObserverList<WmDisplayObserver> display_observers_; 92 base::ObserverList<WmDisplayObserver> display_observers_;
93 93
94 std::unique_ptr<AcceleratorControllerDelegateAura> 94 std::unique_ptr<AcceleratorControllerDelegateAura>
95 accelerator_controller_delegate_; 95 accelerator_controller_delegate_;
96 96
97 DISALLOW_COPY_AND_ASSIGN(WmShellAura); 97 DISALLOW_COPY_AND_ASSIGN(ShellPortClassic);
98 }; 98 };
99 99
100 } // namespace ash 100 } // namespace ash
101 101
102 #endif // ASH_AURA_WM_SHELL_AURA_H_ 102 #endif // ASH_AURA_SHELL_PORT_CLASSIC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698