summaryrefslogtreecommitdiffstats
path: root/ash/desktop_background
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-14 02:38:48 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-14 02:38:48 +0000
commitbfe7c195f6363d41377c9a9bbd8d3fbd881aad76 (patch)
treec90442c0f594b060820984f94f71457507af04fc /ash/desktop_background
parentec0c0aa43dd73b963ec3be403f337693737c6f8e (diff)
downloadchromium_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/desktop_background')
-rw-r--r--ash/desktop_background/desktop_background_view.cc2
-rw-r--r--ash/desktop_background/desktop_background_view.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/ash/desktop_background/desktop_background_view.cc b/ash/desktop_background/desktop_background_view.cc
index 28a7a0c..ea324e9 100644
--- a/ash/desktop_background/desktop_background_view.cc
+++ b/ash/desktop_background/desktop_background_view.cc
@@ -126,7 +126,7 @@ void DesktopBackgroundView::OnPaint(gfx::Canvas* canvas) {
}
}
-bool DesktopBackgroundView::OnMousePressed(const views::MouseEvent& event) {
+bool DesktopBackgroundView::OnMousePressed(const ui::MouseEvent& event) {
return true;
}
diff --git a/ash/desktop_background/desktop_background_view.h b/ash/desktop_background/desktop_background_view.h
index 75df941..3793496 100644
--- a/ash/desktop_background/desktop_background_view.h
+++ b/ash/desktop_background/desktop_background_view.h
@@ -23,7 +23,7 @@ class DesktopBackgroundView : public views::WidgetDelegateView,
private:
// Overridden from views::View:
virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
- virtual bool OnMousePressed(const views::MouseEvent& event) OVERRIDE;
+ virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE;
// Overridden from views::ContextMenuController:
virtual void ShowContextMenuForView(views::View* source,