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

Unified Diff: chrome/browser/ui/cocoa/global_error_bubble_controller.mm

Issue 2355413007: [Mac] Refactor the Fullscreen Toolbar (Closed)
Patch Set: Nits and grits Created 4 years, 2 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/cocoa/global_error_bubble_controller.mm
diff --git a/chrome/browser/ui/cocoa/global_error_bubble_controller.mm b/chrome/browser/ui/cocoa/global_error_bubble_controller.mm
index a4153e8e42a158895b849108ace96e6f35f0e81a..d50a4b7b9973c705b8c8cc7d7a8677c940e331a6 100644
--- a/chrome/browser/ui/cocoa/global_error_bubble_controller.mm
+++ b/chrome/browser/ui/cocoa/global_error_bubble_controller.mm
@@ -127,7 +127,7 @@ class Bridge : public GlobalErrorBubbleViewBase {
- (void)showWindow:(id)sender {
BrowserWindowController* bwc = [BrowserWindowController
browserWindowControllerForWindow:[self parentWindow]];
- [bwc lockBarVisibilityForOwner:self withAnimation:NO];
+ [bwc lockToolbarVisibilityForOwner:self withAnimation:NO];
[super showWindow:sender];
}
@@ -137,7 +137,7 @@ class Bridge : public GlobalErrorBubbleViewBase {
bridge_.reset();
BrowserWindowController* bwc = [BrowserWindowController
browserWindowControllerForWindow:[self parentWindow]];
- [bwc releaseBarVisibilityForOwner:self withAnimation:YES];
+ [bwc releaseToolbarVisibilityForOwner:self withAnimation:YES];
[super close];
}

Powered by Google App Engine
This is Rietveld 408576698