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

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

Issue 197623002: [OriginChip] Show the page info bubble on the location bar icon. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a post-merge inconsistency Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/views/location_bar/location_icon_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_LOCATION_ICON_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_ICON_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_ICON_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_ICON_VIEW_H_
7 7
8 #include "chrome/browser/ui/views/location_bar/page_info_helper.h" 8 #include "chrome/browser/ui/views/location_bar/page_info_helper.h"
9 #include "ui/views/controls/image_view.h" 9 #include "ui/views/controls/image_view.h"
10 10
(...skipping 13 matching lines...) Expand all
24 24
25 // ui::EventHandler: 25 // ui::EventHandler:
26 virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE; 26 virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE;
27 27
28 // Whether we should show the tooltip for this icon or not. 28 // Whether we should show the tooltip for this icon or not.
29 void ShowTooltip(bool show); 29 void ShowTooltip(bool show);
30 30
31 PageInfoHelper* page_info_helper() { return &page_info_helper_; } 31 PageInfoHelper* page_info_helper() { return &page_info_helper_; }
32 32
33 private: 33 private:
34 // Handles both click and gesture events by delegating to the page info
35 // helper in the appropriate circumstances.
36 void OnClickOrTap(const ui::LocatedEvent& event);
37
34 PageInfoHelper page_info_helper_; 38 PageInfoHelper page_info_helper_;
35 39
36 DISALLOW_IMPLICIT_CONSTRUCTORS(LocationIconView); 40 DISALLOW_IMPLICIT_CONSTRUCTORS(LocationIconView);
37 }; 41 };
38 42
39 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_ICON_VIEW_H_ 43 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_ICON_VIEW_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/views/location_bar/location_icon_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698