diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-10 16:56:27 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-10 16:56:27 +0000 |
commit | fd4504be3c2de832ae20aadc92d3581ac71b2d58 (patch) | |
tree | bdc624fb6ff6a9c60f72fb0afb9dfb9d7af3f79e /chrome/browser/gtk/location_bar_view_gtk.h | |
parent | e8fab856ad84b068d841f9eef727424c1eea7460 (diff) | |
download | chromium_src-fd4504be3c2de832ae20aadc92d3581ac71b2d58.zip chromium_src-fd4504be3c2de832ae20aadc92d3581ac71b2d58.tar.gz chromium_src-fd4504be3c2de832ae20aadc92d3581ac71b2d58.tar.bz2 |
Some cleanups and hookups to LocationBarViewGtk.
- Rename FocusLocation to SetFocus (and don't make it select all).
This matches the Windows style more closely.
- Implement SetUserText (basically copied from Windows w/ a TODO).
- Switch to the gtk_accel APIs instead of using the widget ones.
- Hookup FocusSearch (and its ctrl-k accelerator).
- Hookup AcceptInput (the go button now works!).
- Fix lack of space before {
- Rename edit_view_ to location_entry_ to match the Windows LocationBarView.
- Don't plumb FocusLocationBar through BrowserWindow -> BrowserToolbar.
Review URL: http://codereview.chromium.org/43025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11339 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/location_bar_view_gtk.h')
-rw-r--r-- | chrome/browser/gtk/location_bar_view_gtk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/gtk/location_bar_view_gtk.h b/chrome/browser/gtk/location_bar_view_gtk.h index 50b0775..67c8fdc 100644 --- a/chrome/browser/gtk/location_bar_view_gtk.h +++ b/chrome/browser/gtk/location_bar_view_gtk.h @@ -65,7 +65,7 @@ class LocationBarViewGtk : public AutocompleteEditController, private: GtkWidget* vbox_; - scoped_ptr<AutocompleteEditViewGtk> edit_view_; + scoped_ptr<AutocompleteEditViewGtk> location_entry_; Profile* profile_; CommandUpdater* command_updater_; |