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

Unified Diff: ash/system/tray/tray_notification_view.h

Issue 2066583004: mash: Move most files in //ash/system/tray to //ash/common/system/tray (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@trayupdatemove
Patch Set: rebase Created 4 years, 6 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/tray/tray_item_more.cc ('k') | ash/system/tray/tray_notification_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/tray/tray_notification_view.h
diff --git a/ash/system/tray/tray_notification_view.h b/ash/system/tray/tray_notification_view.h
deleted file mode 100644
index 17c737e53c08e10776abead10cf8bd4cea98b1d0..0000000000000000000000000000000000000000
--- a/ash/system/tray/tray_notification_view.h
+++ /dev/null
@@ -1,91 +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_TRAY_TRAY_NOTIFICATION_VIEW_H_
-#define ASH_SYSTEM_TRAY_TRAY_NOTIFICATION_VIEW_H_
-
-#include "base/macros.h"
-#include "base/timer/timer.h"
-#include "ui/views/controls/button/image_button.h"
-#include "ui/views/controls/slide_out_view.h"
-
-namespace gfx {
-class ImageSkia;
-}
-
-namespace views {
-class ImageView;
-}
-
-namespace ash {
-class SystemTrayItem;
-
-// A view for closable notification views, laid out like:
-// -------------------
-// | icon contents x |
-// ----------------v--
-// The close button will call OnClose() when clicked.
-class TrayNotificationView : public views::SlideOutView,
- public views::ButtonListener {
- public:
- // If icon_id is 0, no icon image will be set. SetIconImage can be called
- // to later set the icon image.
- TrayNotificationView(SystemTrayItem* owner, int icon_id);
- ~TrayNotificationView() override;
-
- // InitView must be called once with the contents to be displayed.
- void InitView(views::View* contents);
-
- // Sets/updates the icon image.
- void SetIconImage(const gfx::ImageSkia& image);
-
- // Replaces the contents view.
- void UpdateView(views::View* new_contents);
-
- // Replaces the contents view and updates the icon image.
- void UpdateViewAndImage(views::View* new_contents,
- const gfx::ImageSkia& image);
-
- // Autoclose timer operations.
- void StartAutoCloseTimer(int seconds);
- void StopAutoCloseTimer();
- void RestartAutoCloseTimer();
-
- // Overridden from ButtonListener.
- void ButtonPressed(views::Button* sender, const ui::Event& event) override;
-
- // Overridden from views::View.
- bool OnMousePressed(const ui::MouseEvent& event) override;
-
- // Overridden from ui::EventHandler.
- void OnGestureEvent(ui::GestureEvent* event) override;
-
- protected:
- // Called when the close button is pressed. Does nothing by default.
- virtual void OnClose();
- // Called when the notification is clicked on. Does nothing by default.
- virtual void OnClickAction();
-
- // Overridden from views::SlideOutView.
- void OnSlideOut() override;
-
- SystemTrayItem* owner() { return owner_; }
-
- private:
- void HandleClose();
- void HandleClickAction();
-
- SystemTrayItem* owner_;
- int icon_id_;
- views::ImageView* icon_;
-
- int autoclose_delay_;
- base::OneShotTimer autoclose_;
-
- DISALLOW_COPY_AND_ASSIGN(TrayNotificationView);
-};
-
-} // namespace ash
-
-#endif // ASH_SYSTEM_TRAY_TRAY_NOTIFICATION_VIEW_H_
« no previous file with comments | « ash/system/tray/tray_item_more.cc ('k') | ash/system/tray/tray_notification_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698