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

Unified Diff: chrome/browser/cocoa/toolbar_controller.mm

Issue 50074: Initial implemention of Mac Omnibox. (Closed)
Patch Set: Disable LocationBarViewMacTest. Created 11 years, 8 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/cocoa/location_bar_view_mac_unittest.mm ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/toolbar_controller.mm
diff --git a/chrome/browser/cocoa/toolbar_controller.mm b/chrome/browser/cocoa/toolbar_controller.mm
index e77c30c7b0afcfa3244745c3afd18f367f40e439..01a9c2122981568bbf9321942d7d1b235d0e3805 100644
--- a/chrome/browser/cocoa/toolbar_controller.mm
+++ b/chrome/browser/cocoa/toolbar_controller.mm
@@ -42,7 +42,8 @@ static NSString* const kStarredImageName = @"starred";
// bar and button state.
- (void)awakeFromNib {
[self initCommandStatus:commands_];
- locationBarView_ = new LocationBarViewMac(locationBar_);
+ locationBarView_ = new LocationBarViewMac(locationBar_, commands_,
+ toolbarModel_);
locationBarView_->Init();
[locationBar_ setStringValue:@"http://dev.chromium.org"];
}
@@ -100,8 +101,21 @@ static NSString* const kStarredImageName = @"starred";
// TODO(pinkerton): there's a lot of ui code in autocomplete_edit.cc
// that we'll want to duplicate. For now, just handle setting the text.
+ // TODO(shess): This is the start of what pinkerton refers to.
+ // Unfortunately, I'm going to need to spend some time wiring things
+ // up. This call should suffice to close any open autocomplete
+ // pulldown. It should also be the right thing to do to save and
+ // restore state, but at this time it's not clear that this is the
+ // right place, and tab is not the right parameter.
+ if (locationBarView_) {
+ locationBarView_->SaveStateToContents(NULL);
+ }
+
// TODO(pinkerton): update the security lock icon and background color
+ // TODO(shess): Determine whether this should happen via
+ // locationBarView_, instead, in which case this class can
+ // potentially lose the locationBar_ reference.
NSString* urlString = base::SysWideToNSString(toolbarModel_->GetText());
[locationBar_ setStringValue:urlString];
}
« no previous file with comments | « chrome/browser/cocoa/location_bar_view_mac_unittest.mm ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698