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

Unified Diff: ash/common/wm/workspace_controller.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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
« no previous file with comments | « ash/common/wm/workspace/workspace_window_resizer.cc ('k') | ash/common/wm/workspace_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/wm/workspace_controller.h
diff --git a/ash/common/wm/workspace_controller.h b/ash/common/wm/workspace_controller.h
deleted file mode 100644
index d37fe682b4ba647ec5412a10444598a79c44a933..0000000000000000000000000000000000000000
--- a/ash/common/wm/workspace_controller.h
+++ /dev/null
@@ -1,60 +0,0 @@
-// Copyright (c) 2012 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_COMMON_WM_WORKSPACE_CONTROLLER_H_
-#define ASH_COMMON_WM_WORKSPACE_CONTROLLER_H_
-
-#include <memory>
-
-#include "ash/ash_export.h"
-#include "ash/common/wm/workspace/workspace_types.h"
-#include "base/macros.h"
-#include "ui/aura/window_observer.h"
-
-namespace ash {
-class WmWindow;
-class WorkspaceControllerTestHelper;
-class WorkspaceEventHandler;
-class WorkspaceLayoutManager;
-class WorkspaceLayoutManagerBackdropDelegate;
-
-// WorkspaceController acts as a central place that ties together all the
-// various workspace pieces.
-class ASH_EXPORT WorkspaceController : public aura::WindowObserver {
- public:
- // Installs WorkspaceLayoutManager on |viewport|.
- explicit WorkspaceController(WmWindow* viewport);
- ~WorkspaceController() override;
-
- // Returns the current window state.
- wm::WorkspaceWindowState GetWindowState() const;
-
- // Starts the animation that occurs on first login.
- void DoInitialAnimation();
-
- // Add a delegate which adds a backdrop behind the top window of the default
- // workspace.
- void SetMaximizeBackdropDelegate(
- std::unique_ptr<WorkspaceLayoutManagerBackdropDelegate> delegate);
-
- WorkspaceLayoutManager* layout_manager() { return layout_manager_; }
-
- private:
- friend class WorkspaceControllerTestHelper;
-
- // aura::WindowObserver:
- void OnWindowDestroying(aura::Window* window) override;
-
- WmWindow* viewport_;
- std::unique_ptr<WorkspaceEventHandler> event_handler_;
-
- // Owned by |viewport_|.
- WorkspaceLayoutManager* layout_manager_;
-
- DISALLOW_COPY_AND_ASSIGN(WorkspaceController);
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_WM_WORKSPACE_CONTROLLER_H_
« no previous file with comments | « ash/common/wm/workspace/workspace_window_resizer.cc ('k') | ash/common/wm/workspace_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698