Index: chrome/browser/views/location_bar/location_bar_view.h |
=================================================================== |
--- chrome/browser/views/location_bar/location_bar_view.h (revision 53209) |
+++ chrome/browser/views/location_bar/location_bar_view.h (working copy) |
@@ -13,7 +13,6 @@ |
#include "chrome/browser/extensions/extension_context_menu_model.h" |
#include "chrome/browser/first_run.h" |
#include "chrome/browser/location_bar.h" |
-#include "chrome/browser/search_engines/template_url_model.h" |
#include "chrome/browser/tab_contents/tab_contents.h" |
#include "chrome/browser/toolbar_model.h" |
#include "chrome/browser/views/extensions/extension_popup.h" |
@@ -59,8 +58,7 @@ |
public LocationBarTesting, |
public views::View, |
public views::DragController, |
- public AutocompleteEditController, |
- public TemplateURLModelObserver { |
+ public AutocompleteEditController { |
public: |
// The location bar view's class name. |
static const char kViewClassName[]; |
@@ -105,8 +103,8 @@ |
void Init(); |
- // True if this instance has been initialized by calling Init, which can only |
- // be called when the receiving instance is attached to a view container. |
+ // Returns whether this instance has been initialized by callin Init. Init can |
+ // only be called when the receiving instance is attached to a view container. |
bool IsInitialized() const; |
// Returns the appropriate color for the desired kind, based on the user's |
@@ -222,9 +220,6 @@ |
virtual ExtensionAction* GetVisiblePageAction(size_t index); |
virtual void TestPageActionPressed(size_t index); |
- // Overridden from TemplateURLModelObserver |
- virtual void OnTemplateURLModelChanged(); |
- |
static const int kVertMargin; // Space above and below the edit. |
static const int kEdgeThickness; // Unavailable space at horizontal edges. |
static const int kItemPadding; // Space between items within the bar. |
@@ -356,13 +351,13 @@ |
// focused. Used when the toolbar is in full keyboard accessibility mode. |
bool show_focus_rect_; |
- // Whether bubble text is short or long. |
- FirstRun::BubbleType bubble_type_; |
- |
#if defined(OS_LINUX) |
scoped_ptr<AccessibleWidgetHelper> accessible_widget_helper_; |
#endif |
+ // Used to schedule a task for the first run info bubble. |
+ ScopedRunnableMethodFactory<LocationBarView> first_run_bubble_; |
+ |
DISALLOW_IMPLICIT_CONSTRUCTORS(LocationBarView); |
}; |