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

Unified Diff: ash/common/wm/always_on_top_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/OWNERS ('k') | ash/common/wm/always_on_top_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/wm/always_on_top_controller.h
diff --git a/ash/common/wm/always_on_top_controller.h b/ash/common/wm/always_on_top_controller.h
deleted file mode 100644
index bdf144635571b64b393b894ecc369621c165df08..0000000000000000000000000000000000000000
--- a/ash/common/wm/always_on_top_controller.h
+++ /dev/null
@@ -1,51 +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_ALWAYS_ON_TOP_CONTROLLER_H_
-#define ASH_COMMON_WM_ALWAYS_ON_TOP_CONTROLLER_H_
-
-#include <memory>
-
-#include "ash/ash_export.h"
-#include "base/macros.h"
-#include "ui/aura/window_observer.h"
-
-namespace ash {
-
-class WmWindow;
-class WorkspaceLayoutManager;
-
-// AlwaysOnTopController puts window into proper containers based on its
-// 'AlwaysOnTop' property. That is, putting a window into the worskpace
-// container if its "AlwaysOnTop" property is false. Otherwise, put it in
-// |always_on_top_container_|.
-class ASH_EXPORT AlwaysOnTopController : public aura::WindowObserver {
- public:
- explicit AlwaysOnTopController(WmWindow* viewport);
- ~AlwaysOnTopController() override;
-
- // Gets container for given |window| based on its "AlwaysOnTop" property.
- WmWindow* GetContainer(WmWindow* window) const;
-
- WorkspaceLayoutManager* GetLayoutManager() const;
-
- void SetLayoutManagerForTest(
- std::unique_ptr<WorkspaceLayoutManager> layout_manager);
-
- private:
- // Overridden from aura::WindowObserver:
- void OnWindowHierarchyChanged(const HierarchyChangeParams& params) override;
- void OnWindowPropertyChanged(aura::Window* window,
- const void* key,
- intptr_t old) override;
- void OnWindowDestroying(aura::Window* window) override;
-
- WmWindow* always_on_top_container_;
-
- DISALLOW_COPY_AND_ASSIGN(AlwaysOnTopController);
-};
-
-} // namepsace ash
-
-#endif // ASH_COMMON_WM_ALWAYS_ON_TOP_CONTROLLER_H_
« no previous file with comments | « ash/common/wm/OWNERS ('k') | ash/common/wm/always_on_top_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698