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

Unified Diff: chrome/browser/views/tabs/tab_strip.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
Index: chrome/browser/views/tabs/tab_strip.cc
diff --git a/chrome/browser/views/tabs/tab_strip.cc b/chrome/browser/views/tabs/tab_strip.cc
index f5a8756b595b37f9af5310c649b5c0ac54e15824..a88f96fdd428e923e9df2255b9a94275a8e05069 100644
--- a/chrome/browser/views/tabs/tab_strip.cc
+++ b/chrome/browser/views/tabs/tab_strip.cc
@@ -472,7 +472,7 @@ void TabStrip::PaintChildren(gfx::Canvas* canvas) {
}
}
- if (GetThemeProvider()->ShouldUseNativeFrame()) {
+ if (GetWindow()->GetNonClientView()->UseNativeFrame()) {
// Make sure unselected tabs are somewhat transparent.
SkPaint paint;
paint.setColor(SkColorSetARGB(200, 255, 255, 255));

Powered by Google App Engine
This is Rietveld 408576698