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

Unified Diff: chrome/browser/views/frame/browser_frame_win.cc

Issue 1727009: Always use opaque frame for extension app windows (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: now it actually works Created 10 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 | « no previous file | chrome/browser/views/frame/opaque_browser_frame_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/frame/browser_frame_win.cc
diff --git a/chrome/browser/views/frame/browser_frame_win.cc b/chrome/browser/views/frame/browser_frame_win.cc
index 0092fa7c42beb0c85a5b84b53d3853680c24745b..7239b53424cf9035fed1398b232f3b5a33b1ca7c 100644
--- a/chrome/browser/views/frame/browser_frame_win.cc
+++ b/chrome/browser/views/frame/browser_frame_win.cc
@@ -111,6 +111,9 @@ bool BrowserFrameWin::AlwaysUseNativeFrame() const {
if (browser_view_->IsBrowserTypePanel())
return false;
+ if (browser_view_->browser()->type() == Browser::TYPE_EXTENSION_APP)
Peter Kasting 2010/04/28 04:45:17 Nit: Add a comment about this (and, if applicable,
+ return false;
+
// We don't theme popup or app windows, so regardless of whether or not a
// theme is active for normal browser windows, we don't want to use the custom
// frame for popups/apps.
« no previous file with comments | « no previous file | chrome/browser/views/frame/opaque_browser_frame_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698