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

Unified Diff: ash/system/web_notification/web_notification_tray.cc

Issue 10827271: Replace views::Event with ui::Event. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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/web_notification/web_notification_tray.h ('k') | ash/wm/custom_frame_view_ash.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/web_notification/web_notification_tray.cc
===================================================================
--- ash/system/web_notification/web_notification_tray.cc (revision 151055)
+++ ash/system/web_notification/web_notification_tray.cc (working copy)
@@ -445,7 +445,7 @@
// Overridden from ButtonListener.
virtual void ButtonPressed(views::Button* sender,
- const views::Event& event) OVERRIDE {
+ const ui::Event& event) OVERRIDE {
if (sender == close_button_)
tray_->SendRemoveNotification(notification_.id);
}
@@ -519,7 +519,7 @@
// Overridden from ButtonListener.
virtual void ButtonPressed(views::Button* sender,
- const views::Event& event) OVERRIDE {
+ const ui::Event& event) OVERRIDE {
if (sender == close_all_button_)
tray_->SendRemoveAllNotifications();
}
@@ -1007,7 +1007,7 @@
delegate_->DisableNotificationsFromSource(id);
}
-bool WebNotificationTray::PerformAction(const views::Event& event) {
+bool WebNotificationTray::PerformAction(const ui::Event& event) {
if (message_center_bubble())
HideMessageCenterBubble();
else
« no previous file with comments | « ash/system/web_notification/web_notification_tray.h ('k') | ash/wm/custom_frame_view_ash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698