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

Side by Side Diff: chrome/browser/ui/views/location_bar/ev_bubble_view.h

Issue 11280290: events: Change gesture-event handler in EventHandler to not return any values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_
7 7
8 #include "chrome/browser/ui/views/location_bar/icon_label_bubble_view.h" 8 #include "chrome/browser/ui/views/location_bar/icon_label_bubble_view.h"
9 #include "chrome/browser/ui/views/location_bar/page_info_helper.h" 9 #include "chrome/browser/ui/views/location_bar/page_info_helper.h"
10 10
(...skipping 10 matching lines...) Expand all
21 int contained_image, 21 int contained_image,
22 SkColor color, 22 SkColor color,
23 LocationBarView* location_bar); 23 LocationBarView* location_bar);
24 virtual ~EVBubbleView(); 24 virtual ~EVBubbleView();
25 25
26 // Overridden from View. 26 // Overridden from View.
27 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE; 27 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE;
28 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE; 28 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE;
29 29
30 // Overridden from ui::EventHandler. 30 // Overridden from ui::EventHandler.
31 virtual ui::EventResult OnGestureEvent(ui::GestureEvent* event) OVERRIDE; 31 virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE;
32 32
33 private: 33 private:
34 PageInfoHelper page_info_helper_; 34 PageInfoHelper page_info_helper_;
35 35
36 DISALLOW_IMPLICIT_CONSTRUCTORS(EVBubbleView); 36 DISALLOW_IMPLICIT_CONSTRUCTORS(EVBubbleView);
37 }; 37 };
38 38
39 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_ 39 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_EV_BUBBLE_VIEW_H_
40 40
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/immersive_mode_controller.cc ('k') | chrome/browser/ui/views/location_bar/ev_bubble_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698