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

Side by Side Diff: ash/system/tray/tray_notification_view.h

Issue 685483004: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « ash/system/tray/tray_item_view.h ('k') | ash/system/tray/tray_popup_header_button.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ASH_SYSTEM_TRAY_TRAY_NOTIFICATION_VIEW_H_ 5 #ifndef ASH_SYSTEM_TRAY_TRAY_NOTIFICATION_VIEW_H_
6 #define ASH_SYSTEM_TRAY_TRAY_NOTIFICATION_VIEW_H_ 6 #define ASH_SYSTEM_TRAY_TRAY_NOTIFICATION_VIEW_H_
7 7
8 #include "base/timer/timer.h" 8 #include "base/timer/timer.h"
9 #include "ui/views/controls/button/image_button.h" 9 #include "ui/views/controls/button/image_button.h"
10 #include "ui/views/controls/slide_out_view.h" 10 #include "ui/views/controls/slide_out_view.h"
(...skipping 13 matching lines...) Expand all
24 // ------------------- 24 // -------------------
25 // | icon contents x | 25 // | icon contents x |
26 // ----------------v-- 26 // ----------------v--
27 // The close button will call OnClose() when clicked. 27 // The close button will call OnClose() when clicked.
28 class TrayNotificationView : public views::SlideOutView, 28 class TrayNotificationView : public views::SlideOutView,
29 public views::ButtonListener { 29 public views::ButtonListener {
30 public: 30 public:
31 // If icon_id is 0, no icon image will be set. SetIconImage can be called 31 // If icon_id is 0, no icon image will be set. SetIconImage can be called
32 // to later set the icon image. 32 // to later set the icon image.
33 TrayNotificationView(SystemTrayItem* owner, int icon_id); 33 TrayNotificationView(SystemTrayItem* owner, int icon_id);
34 virtual ~TrayNotificationView(); 34 ~TrayNotificationView() override;
35 35
36 // InitView must be called once with the contents to be displayed. 36 // InitView must be called once with the contents to be displayed.
37 void InitView(views::View* contents); 37 void InitView(views::View* contents);
38 38
39 // Sets/updates the icon image. 39 // Sets/updates the icon image.
40 void SetIconImage(const gfx::ImageSkia& image); 40 void SetIconImage(const gfx::ImageSkia& image);
41 41
42 // Gets the icons image. 42 // Gets the icons image.
43 const gfx::ImageSkia& GetIconImage() const; 43 const gfx::ImageSkia& GetIconImage() const;
44 44
45 // Replaces the contents view. 45 // Replaces the contents view.
46 void UpdateView(views::View* new_contents); 46 void UpdateView(views::View* new_contents);
47 47
48 // Replaces the contents view and updates the icon image. 48 // Replaces the contents view and updates the icon image.
49 void UpdateViewAndImage(views::View* new_contents, 49 void UpdateViewAndImage(views::View* new_contents,
50 const gfx::ImageSkia& image); 50 const gfx::ImageSkia& image);
51 51
52 // Autoclose timer operations. 52 // Autoclose timer operations.
53 void StartAutoCloseTimer(int seconds); 53 void StartAutoCloseTimer(int seconds);
54 void StopAutoCloseTimer(); 54 void StopAutoCloseTimer();
55 void RestartAutoCloseTimer(); 55 void RestartAutoCloseTimer();
56 56
57 // Overridden from ButtonListener. 57 // Overridden from ButtonListener.
58 virtual void ButtonPressed(views::Button* sender, 58 void ButtonPressed(views::Button* sender, const ui::Event& event) override;
59 const ui::Event& event) override;
60 59
61 // Overridden from views::View. 60 // Overridden from views::View.
62 virtual bool OnMousePressed(const ui::MouseEvent& event) override; 61 bool OnMousePressed(const ui::MouseEvent& event) override;
63 62
64 // Overridden from ui::EventHandler. 63 // Overridden from ui::EventHandler.
65 virtual void OnGestureEvent(ui::GestureEvent* event) override; 64 void OnGestureEvent(ui::GestureEvent* event) override;
66 65
67 protected: 66 protected:
68 // Called when the close button is pressed. Does nothing by default. 67 // Called when the close button is pressed. Does nothing by default.
69 virtual void OnClose(); 68 virtual void OnClose();
70 // Called when the notification is clicked on. Does nothing by default. 69 // Called when the notification is clicked on. Does nothing by default.
71 virtual void OnClickAction(); 70 virtual void OnClickAction();
72 71
73 // Overridden from views::SlideOutView. 72 // Overridden from views::SlideOutView.
74 virtual void OnSlideOut() override; 73 void OnSlideOut() override;
75 74
76 SystemTrayItem* owner() { return owner_; } 75 SystemTrayItem* owner() { return owner_; }
77 76
78 private: 77 private:
79 void HandleClose(); 78 void HandleClose();
80 void HandleClickAction(); 79 void HandleClickAction();
81 80
82 SystemTrayItem* owner_; 81 SystemTrayItem* owner_;
83 int icon_id_; 82 int icon_id_;
84 views::ImageView* icon_; 83 views::ImageView* icon_;
85 84
86 int autoclose_delay_; 85 int autoclose_delay_;
87 base::OneShotTimer<TrayNotificationView> autoclose_; 86 base::OneShotTimer<TrayNotificationView> autoclose_;
88 87
89 DISALLOW_COPY_AND_ASSIGN(TrayNotificationView); 88 DISALLOW_COPY_AND_ASSIGN(TrayNotificationView);
90 }; 89 };
91 90
92 } // namespace ash 91 } // namespace ash
93 92
94 #endif // ASH_SYSTEM_TRAY_TRAY_NOTIFICATION_VIEW_H_ 93 #endif // ASH_SYSTEM_TRAY_TRAY_NOTIFICATION_VIEW_H_
OLDNEW
« no previous file with comments | « ash/system/tray/tray_item_view.h ('k') | ash/system/tray/tray_popup_header_button.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698