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

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

Issue 1576019: [Mac] Get theme providers from a window's delegate, not its window controller... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 9 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/chrome_browser_window.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/fullscreen_window.mm
===================================================================
--- chrome/browser/cocoa/fullscreen_window.mm (revision 43625)
+++ chrome/browser/cocoa/fullscreen_window.mm (working copy)
@@ -83,15 +83,15 @@
}
- (ThemeProvider*)themeProvider {
- return [[self windowController] themeProvider];
+ return [[self delegate] themeProvider];
}
- (ThemedWindowStyle)themedWindowStyle {
- return [[self windowController] themedWindowStyle];
+ return [[self delegate] themedWindowStyle];
}
- (NSPoint)themePatternPhase {
- return [[self windowController] themePatternPhase];
+ return [[self delegate] themePatternPhase];
}
@end
« no previous file with comments | « chrome/browser/cocoa/chrome_browser_window.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698