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

Unified Diff: chrome/browser/ui/views/constrained_window_views.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
Index: chrome/browser/ui/views/constrained_window_views.cc
===================================================================
--- chrome/browser/ui/views/constrained_window_views.cc (revision 151055)
+++ chrome/browser/ui/views/constrained_window_views.cc (working copy)
@@ -187,7 +187,7 @@
// Overridden from views::ButtonListener:
virtual void ButtonPressed(views::Button* sender,
- const views::Event& event) OVERRIDE;
+ const ui::Event& event) OVERRIDE;
private:
// Returns the thickness of the entire nonclient left, right, and bottom
@@ -390,7 +390,7 @@
// ConstrainedWindowFrameView, views::ButtonListener implementation:
void ConstrainedWindowFrameView::ButtonPressed(
- views::Button* sender, const views::Event& event) {
+ views::Button* sender, const ui::Event& event) {
if (sender == close_button_)
container_->CloseConstrainedWindow();
}
@@ -559,7 +559,7 @@
// views::ButtonListener overrides:
virtual void ButtonPressed(views::Button* sender,
- const views::Event& event) OVERRIDE {
+ const ui::Event& event) OVERRIDE {
if (sender == close_button())
container_->CloseConstrainedWindow();
}
« no previous file with comments | « chrome/browser/ui/views/confirm_bubble_views.cc ('k') | chrome/browser/ui/views/content_setting_bubble_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698