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

Unified Diff: chrome/browser/views/location_bar/location_bar_view.h

Issue 3025009: Revert 53198 - Some first run fixes:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 5 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
« no previous file with comments | « chrome/browser/first_run_win.cc ('k') | chrome/browser/views/location_bar/location_bar_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « chrome/browser/first_run_win.cc ('k') | chrome/browser/views/location_bar/location_bar_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698