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

Unified Diff: chrome/browser/ui/views/omnibox/omnibox_result_view.h

Issue 15745031: Restyle omnibox popup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove comment Created 7 years, 6 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/omnibox/omnibox_result_view.h
diff --git a/chrome/browser/ui/views/omnibox/omnibox_result_view.h b/chrome/browser/ui/views/omnibox/omnibox_result_view.h
index 985335373965ea4040dbed02661f97848d837566..d426eab99576eefb931ee437979ba51c26b0b7ac 100644
--- a/chrome/browser/ui/views/omnibox/omnibox_result_view.h
+++ b/chrome/browser/ui/views/omnibox/omnibox_result_view.h
@@ -16,6 +16,7 @@
#include "ui/views/controls/image_view.h"
#include "ui/views/view.h"
+class LocationBarView;
class OmniboxResultViewModel;
namespace gfx {
@@ -46,7 +47,7 @@ class OmniboxResultView : public views::View,
OmniboxResultView(OmniboxResultViewModel* model,
int model_index,
- views::View* location_bar,
+ LocationBarView* location_bar_view,
const gfx::Font& font);
virtual ~OmniboxResultView();
@@ -66,15 +67,15 @@ class OmniboxResultView : public views::View,
ResultViewState GetState() const;
+ // Returns the height of the text portion of the result view. In the base
+ // class, this is the height of one line of text.
+ virtual int GetTextHeight() const;
+
protected:
virtual void PaintMatch(gfx::Canvas* canvas,
const AutocompleteMatch& match,
int x);
- // Returns the height of the text portion of the result view. In the base
- // class, this is the height of one line of text.
- virtual int GetTextHeight() const;
-
// Draws the specified |text| into the canvas, using highlighting provided by
// |classifications|. If |force_dim| is true, ACMatchClassification::DIM is
// added to all of the classifications. Returns the x position to the right
@@ -145,7 +146,7 @@ class OmniboxResultView : public views::View,
OmniboxResultViewModel* model_;
size_t model_index_;
- views::View* location_bar_;
+ LocationBarView* location_bar_view_;
const gfx::Font font_;
int font_height_;
« no previous file with comments | « chrome/browser/ui/views/omnibox/omnibox_popup_contents_view.cc ('k') | chrome/browser/ui/views/omnibox/omnibox_result_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698