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

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

Issue 2285703003: Moves WorkspaceEventHandler to ash/common (Closed)
Patch Set: merge to tip of tree Created 4 years, 4 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/workspace_event_handler_mus.h
diff --git a/ash/mus/bridge/workspace_event_handler_mus.h b/ash/mus/bridge/workspace_event_handler_mus.h
new file mode 100644
index 0000000000000000000000000000000000000000..a202e41b67af873945abf84c985a69869d1cc5b1
--- /dev/null
+++ b/ash/mus/bridge/workspace_event_handler_mus.h
@@ -0,0 +1,39 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ASH_MUS_BRIDGE_WORKSPACE_EVENT_HANDLER_MUS_H_
+#define ASH_MUS_BRIDGE_WORKSPACE_EVENT_HANDLER_MUS_H_
+
+#include "ash/common/wm/workspace/workspace_event_handler.h"
+#include "base/macros.h"
+
+namespace ui {
+class Window;
+}
+
+namespace ash {
+namespace mus {
+
+class WorkspaceEventHandlerMus : public ash::WorkspaceEventHandler {
James Cook 2016/08/26 19:07:16 nit: no ash::
sky 2016/08/26 20:19:16 Done.
+ public:
+ WorkspaceEventHandlerMus(ui::Window* workspace_window);
+ ~WorkspaceEventHandlerMus() override;
+
+ // Returns the WorkspaceEventHandlerMus associated with |window|, or null
+ // if |window| is not the workspace window.
+ static WorkspaceEventHandlerMus* Get(ui::Window* window);
+
+ // Returns the window associated with the workspace.
+ ui::Window* workspace_window() { return workspace_window_; }
+
+ private:
+ ui::Window* workspace_window_;
+
+ DISALLOW_COPY_AND_ASSIGN(WorkspaceEventHandlerMus);
+};
+
+} // namespace mus
+} // namespace ash
+
+#endif // ASH_MUS_BRIDGE_WORKSPACE_EVENT_HANDLER_MUS_H_

Powered by Google App Engine
This is Rietveld 408576698