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

Unified Diff: ash/system/status_area_layout_manager.h

Issue 2731873002: Revert "chromeos: Move files in //ash/common to //ash, part 1" (Closed)
Patch Set: Created 3 years, 9 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/system/settings/tray_settings.cc ('k') | ash/system/status_area_layout_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/status_area_layout_manager.h
diff --git a/ash/system/status_area_layout_manager.h b/ash/system/status_area_layout_manager.h
deleted file mode 100644
index fb204b29d23e1c37a38407fe0ac168a86811e652..0000000000000000000000000000000000000000
--- a/ash/system/status_area_layout_manager.h
+++ /dev/null
@@ -1,44 +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_SYSTEM_STATUS_AREA_LAYOUT_MANAGER_H_
-#define ASH_SYSTEM_STATUS_AREA_LAYOUT_MANAGER_H_
-
-#include "ash/common/wm/wm_snap_to_pixel_layout_manager.h"
-#include "base/macros.h"
-
-namespace ash {
-
-class ShelfWidget;
-
-// StatusAreaLayoutManager is a layout manager responsible for the status area.
-// In any case when status area needs relayout it redirects this call to
-// ShelfLayoutManager.
-class StatusAreaLayoutManager : public wm::WmSnapToPixelLayoutManager {
- public:
- explicit StatusAreaLayoutManager(ShelfWidget* shelf_widget);
- ~StatusAreaLayoutManager() override;
-
- // Overridden from wm::WmSnapToPixelLayoutManager:
- void OnWindowResized() override;
- void SetChildBounds(WmWindow* child,
- const gfx::Rect& requested_bounds) override;
-
- private:
- // Updates layout of the status area. Effectively calls ShelfLayoutManager
- // to update layout of the shelf.
- void LayoutStatusArea();
-
- // True when inside LayoutStatusArea method.
- // Used to prevent calling itself again from SetChildBounds().
- bool in_layout_;
-
- ShelfWidget* shelf_widget_;
-
- DISALLOW_COPY_AND_ASSIGN(StatusAreaLayoutManager);
-};
-
-} // namespace ash
-
-#endif // ASH_SYSTEM_STATUS_AREA_LAYOUT_MANAGER_H_
« no previous file with comments | « ash/system/settings/tray_settings.cc ('k') | ash/system/status_area_layout_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698