diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-14 02:38:48 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-14 02:38:48 +0000 |
commit | bfe7c195f6363d41377c9a9bbd8d3fbd881aad76 (patch) | |
tree | c90442c0f594b060820984f94f71457507af04fc /ash/system/web_notification | |
parent | ec0c0aa43dd73b963ec3be403f337693737c6f8e (diff) | |
download | chromium_src-bfe7c195f6363d41377c9a9bbd8d3fbd881aad76.zip chromium_src-bfe7c195f6363d41377c9a9bbd8d3fbd881aad76.tar.gz chromium_src-bfe7c195f6363d41377c9a9bbd8d3fbd881aad76.tar.bz2 |
Replace views::MouseEvent with ui::MouseEvent
http://crbug/com/125937
TBR=sky@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10832282
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151418 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/system/web_notification')
-rw-r--r-- | ash/system/web_notification/web_notification_tray.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/system/web_notification/web_notification_tray.cc b/ash/system/web_notification/web_notification_tray.cc index d9b0541..5274a17 100644 --- a/ash/system/web_notification/web_notification_tray.cc +++ b/ash/system/web_notification/web_notification_tray.cc @@ -430,7 +430,7 @@ class WebNotificationView : public views::View, } // views::View overrides. - virtual bool OnMousePressed(const views::MouseEvent& event) OVERRIDE { + virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE { tray_->OnClicked(notification_.id); return true; } |