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

Unified Diff: chrome/browser/ui/views/bookmark_bar_view.cc

Issue 6480001: Migrate Event API methods to Google Style. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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/bookmark_bar_view.cc
===================================================================
--- chrome/browser/ui/views/bookmark_bar_view.cc (revision 74326)
+++ chrome/browser/ui/views/bookmark_bar_view.cc (working copy)
@@ -193,12 +193,12 @@
virtual bool IsTriggerableEvent(const views::MouseEvent& e) {
// Left clicks should show the menu contents and right clicks should show
// the context menu. They should not trigger the opening of underlying urls.
- if (e.GetFlags() == views::MouseEvent::EF_LEFT_BUTTON_DOWN ||
- e.GetFlags() == views::MouseEvent::EF_RIGHT_BUTTON_DOWN)
+ if (e.flags() == views::MouseEvent::EF_LEFT_BUTTON_DOWN ||
+ e.flags() == views::MouseEvent::EF_RIGHT_BUTTON_DOWN)
return false;
WindowOpenDisposition disposition(
- event_utils::DispositionFromEventFlags(e.GetFlags()));
+ event_utils::DispositionFromEventFlags(e.flags()));
return disposition != CURRENT_TAB;
}
@@ -1402,9 +1402,8 @@
int ops = data.GetFirstNode(profile_)
? ui::DragDropTypes::DRAG_MOVE
: ui::DragDropTypes::DRAG_COPY | ui::DragDropTypes::DRAG_LINK;
- return
- bookmark_utils::PreferredDropOperation(event.GetSourceOperations(),
- ops);
+ return bookmark_utils::PreferredDropOperation(event.source_operations(),
+ ops);
}
for (int i = 0; i < GetBookmarkButtonCount() &&

Powered by Google App Engine
This is Rietveld 408576698