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

Unified Diff: athena/system/status_icon_container_view.h

Issue 863033002: Delete athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « athena/system/shutdown_dialog.cc ('k') | athena/system/status_icon_container_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: athena/system/status_icon_container_view.h
diff --git a/athena/system/status_icon_container_view.h b/athena/system/status_icon_container_view.h
deleted file mode 100644
index 82b3245a47fd9ddd70473ce51bbe7d8d04bc5d01..0000000000000000000000000000000000000000
--- a/athena/system/status_icon_container_view.h
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright 2014 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 ATHENA_SYSTEM_STATUS_ICON_CONTAINER_VIEW_H_
-#define ATHENA_SYSTEM_STATUS_ICON_CONTAINER_VIEW_H_
-
-#include "athena/system/public/system_ui.h"
-#include "base/memory/scoped_ptr.h"
-#include "ui/views/view.h"
-
-namespace athena {
-
-// View which displays the system tray icons.
-class StatusIconContainerView : public views::View {
- public:
- StatusIconContainerView(SystemUI::ColorScheme color_scheme);
- ~StatusIconContainerView() override;
-
- private:
- // views::View:
- virtual bool OnMousePressed(const ui::MouseEvent& event) override;
- virtual void OnGestureEvent(ui::GestureEvent* event) override;
- virtual void ChildPreferredSizeChanged(views::View* child) override;
-
- class PowerStatus;
- scoped_ptr<PowerStatus> power_status_;
-
- class NetworkStatus;
- scoped_ptr<NetworkStatus> network_status_;
-
- class UpdateStatus;
- scoped_ptr<UpdateStatus> update_status_;
-
- DISALLOW_COPY_AND_ASSIGN(StatusIconContainerView);
-};
-
-} // namespace athena
-
-#endif // ATHENA_SYSTEM_STATUS_ICON_CONTAINER_VIEW_H_
« no previous file with comments | « athena/system/shutdown_dialog.cc ('k') | athena/system/status_icon_container_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698