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

Unified Diff: ash/common/system/tiles/tray_tiles.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/system/tiles/tiles_default_view.cc ('k') | ash/common/system/tiles/tray_tiles.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/tiles/tray_tiles.h
diff --git a/ash/common/system/tiles/tray_tiles.h b/ash/common/system/tiles/tray_tiles.h
deleted file mode 100644
index be8bc8bfc96e62668cfd1837a41b42a89a01e30f..0000000000000000000000000000000000000000
--- a/ash/common/system/tiles/tray_tiles.h
+++ /dev/null
@@ -1,44 +0,0 @@
-// 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_COMMON_SYSTEM_TILES_TRAY_TILES_H_
-#define ASH_COMMON_SYSTEM_TILES_TRAY_TILES_H_
-
-#include "ash/ash_export.h"
-#include "ash/common/system/tray/system_tray_item.h"
-#include "base/macros.h"
-
-namespace ash {
-class SystemTray;
-class TilesDefaultView;
-
-// The tray item for the 'tiles' at the bottom of the system menu. Each tile is
-// an image button which does not reqire explanatory text, and thus does not
-// require its own dedicated row in the system menu.
-class ASH_EXPORT TrayTiles : public SystemTrayItem {
- public:
- explicit TrayTiles(SystemTray* system_tray);
- ~TrayTiles() override;
-
- // Accessor needed to obtain the help button view for the first-run flow.
- views::View* GetHelpButtonView() const;
-
- TilesDefaultView* GetDefaultViewForTesting() const;
- views::View* CreateDefaultViewForTesting(LoginStatus status);
-
- private:
- friend class TrayTilesTest;
-
- // SystemTrayItem:
- views::View* CreateDefaultView(LoginStatus status) override;
- void DestroyDefaultView() override;
-
- TilesDefaultView* default_view_;
-
- DISALLOW_COPY_AND_ASSIGN(TrayTiles);
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_SYSTEM_TILES_TRAY_TILES_H_
« no previous file with comments | « ash/common/system/tiles/tiles_default_view.cc ('k') | ash/common/system/tiles/tray_tiles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698