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

Unified Diff: chrome/browser/ui/tabs/tab_resources.cc

Issue 844333003: MacViews: Audit TOOLKIT_VIEWS in chrome/browser/ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simpler #if condition Created 5 years, 11 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/ui/infobar_container_delegate.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/tabs/tab_resources.cc
diff --git a/chrome/browser/ui/tabs/tab_resources.cc b/chrome/browser/ui/tabs/tab_resources.cc
index 4fc2b6d52133e7267dd2d194d40cb7a5e9157e2c..5b9dee508559d26c3c810de77bdbd1bb803a8340 100644
--- a/chrome/browser/ui/tabs/tab_resources.cc
+++ b/chrome/browser/ui/tabs/tab_resources.cc
@@ -13,14 +13,14 @@ namespace {
const SkScalar kTabCapWidth = 15;
const SkScalar kTabTopCurveWidth = 4;
const SkScalar kTabBottomCurveWidth = 3;
-#if defined(TOOLKIT_VIEWS)
-// Windows and Ash have shadows in the left, right and top parts of the tab.
-const SkScalar kTabInset = 6;
-const SkScalar kTabTop = 2;
-#else
-// Linux GTK and Mac don't have the shadows.
+#if defined(OS_MACOSX)
+// Mac's Cocoa UI doesn't have shadows.
const SkScalar kTabInset = 0;
const SkScalar kTabTop = 0;
+#elif defined(TOOLKIT_VIEWS)
+// The views browser UI has shadows in the left, right and top parts of the tab.
+const SkScalar kTabInset = 6;
+const SkScalar kTabTop = 2;
#endif
} // namespace
« no previous file with comments | « chrome/browser/ui/infobar_container_delegate.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698