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

Unified Diff: ash/mus/bridge/shell_port_mash.h

Issue 2808723004: Renames WmShell to ShellPort (Closed)
Patch Set: feedback 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 side-by-side diff with in-line comments
Download patch
Index: ash/mus/bridge/shell_port_mash.h
diff --git a/ash/mus/bridge/wm_shell_mus.h b/ash/mus/bridge/shell_port_mash.h
similarity index 87%
rename from ash/mus/bridge/wm_shell_mus.h
rename to ash/mus/bridge/shell_port_mash.h
index 14e3c534f490b093b7b2eb64dcb4b52c0f726f62..c30336d0691f2b4a51756f94183cdf5e92f540d2 100644
--- a/ash/mus/bridge/wm_shell_mus.h
+++ b/ash/mus/bridge/shell_port_mash.h
@@ -2,15 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef ASH_MUS_BRIDGE_WM_SHELL_MUS_H_
-#define ASH_MUS_BRIDGE_WM_SHELL_MUS_H_
+#ifndef ASH_MUS_BRIDGE_SHELL_PORT_MASH_H_
+#define ASH_MUS_BRIDGE_SHELL_PORT_MASH_H_
#include <stdint.h>
#include <memory>
#include <vector>
-#include "ash/wm_shell.h"
+#include "ash/shell_port.h"
#include "base/macros.h"
namespace aura {
@@ -33,20 +33,20 @@ class AcceleratorControllerDelegateMus;
class AcceleratorControllerRegistrar;
class ImmersiveHandlerFactoryMus;
class WindowManager;
-class WmShellMusTestApi;
+class ShellPortMashTestApi;
-// WmShell implementation for mus.
-class WmShellMus : public WmShell {
+// ShellPort implementation for mash/mus. See ash/README.md for more.
+class ShellPortMash : public ShellPort {
public:
// If |create_session_state_delegate_stub| is true SessionStateDelegateStub is
// created. If false, the SessionStateDelegate from Shell is used.
- WmShellMus(WmWindow* primary_root_window,
- WindowManager* window_manager,
- views::PointerWatcherEventRouter* pointer_watcher_event_router,
- bool create_session_state_delegate_stub);
- ~WmShellMus() override;
+ ShellPortMash(WmWindow* primary_root_window,
+ WindowManager* window_manager,
+ views::PointerWatcherEventRouter* pointer_watcher_event_router,
+ bool create_session_state_delegate_stub);
+ ~ShellPortMash() override;
- static WmShellMus* Get();
+ static ShellPortMash* Get();
ash::RootWindowController* GetRootWindowControllerWithDisplayId(int64_t id);
@@ -58,7 +58,7 @@ class WmShellMus : public WmShell {
WindowManager* window_manager() { return window_manager_; }
- // WmShell:
+ // ShellPort:
void Shutdown() override;
bool IsRunningInMash() const override;
Config GetAshConfig() const override;
@@ -110,7 +110,7 @@ class WmShellMus : public WmShell {
std::unique_ptr<AcceleratorController> CreateAcceleratorController() override;
private:
- friend class WmShellMusTestApi;
+ friend class ShellPortMashTestApi;
struct MashSpecificState {
MashSpecificState();
@@ -144,10 +144,10 @@ class WmShellMus : public WmShell {
std::unique_ptr<SessionStateDelegate> session_state_delegate_;
- DISALLOW_COPY_AND_ASSIGN(WmShellMus);
+ DISALLOW_COPY_AND_ASSIGN(ShellPortMash);
};
} // namespace mus
} // namespace ash
-#endif // ASH_MUS_BRIDGE_WM_SHELL_MUS_H_
+#endif // ASH_MUS_BRIDGE_SHELL_PORT_MASH_H_

Powered by Google App Engine
This is Rietveld 408576698