Index: mash/wm/status_layout_manager.h |
diff --git a/mash/wm/status_layout_manager.h b/mash/wm/status_layout_manager.h |
deleted file mode 100644 |
index 1eb41e4554356a12a5d2d76fc5456bbec3b7b487..0000000000000000000000000000000000000000 |
--- a/mash/wm/status_layout_manager.h |
+++ /dev/null |
@@ -1,38 +0,0 @@ |
-// Copyright 2015 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 MASH_WM_STATUS_LAYOUT_MANAGER_H_ |
-#define MASH_WM_STATUS_LAYOUT_MANAGER_H_ |
- |
-#include "base/macros.h" |
-#include "mash/shelf/public/interfaces/shelf_constants.mojom.h" |
-#include "mash/wm/layout_manager.h" |
- |
-namespace mash { |
-namespace wm { |
- |
-// Lays out the status container, which contains the status area widget and |
-// notifications. |
-class StatusLayoutManager : public LayoutManager { |
- public: |
- explicit StatusLayoutManager(mus::Window* owner); |
- ~StatusLayoutManager() override; |
- |
- void SetAlignment(mash::shelf::mojom::Alignment alignment); |
- void SetAutoHideBehavior(mash::shelf::mojom::AutoHideBehavior auto_hide); |
- |
- private: |
- // Overridden from LayoutManager: |
- void LayoutWindow(mus::Window* window) override; |
- |
- mash::shelf::mojom::Alignment alignment_; |
- mash::shelf::mojom::AutoHideBehavior auto_hide_behavior_; |
- |
- DISALLOW_COPY_AND_ASSIGN(StatusLayoutManager); |
-}; |
- |
-} // namespace wm |
-} // namespace mash |
- |
-#endif // MASH_WM_STATUS_LAYOUT_MANAGER_H_ |