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

Unified Diff: chrome/browser/ui/cocoa/tabs/tab_strip_background_view_private.h

Issue 2430493002: [Mac] Fix rough-looking profile picker text, especially with a dark theme. (Closed)
Patch Set: Add theme tests Created 3 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
Index: chrome/browser/ui/cocoa/tabs/tab_strip_background_view_private.h
diff --git a/chrome/browser/ui/cocoa/tabs/tab_strip_background_view_private.h b/chrome/browser/ui/cocoa/tabs/tab_strip_background_view_private.h
new file mode 100644
index 0000000000000000000000000000000000000000..87a6f5554fe5a776135794a8505cd81f06e1c298
--- /dev/null
+++ b/chrome/browser/ui/cocoa/tabs/tab_strip_background_view_private.h
@@ -0,0 +1,23 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_UI_COCOA_TABS_TAB_STRIP_BACKGROUND_VIEW_PRIVATE_H_
Robert Sesek 2017/01/11 19:23:40 Not sure I understand the point of this file.
Sidney San Martín 2017/01/11 22:00:58 It's so that tab_strip_background_view_unittest.mm
Robert Sesek 2017/01/11 22:09:54 I think I view that as a public detail (it's certa
+#define CHROME_BROWSER_UI_COCOA_TABS_TAB_STRIP_BACKGROUND_VIEW_PRIVATE_H_
+
+#include "chrome/browser/ui/cocoa/tabs/tab_strip_background_view.h"
+
+#import "chrome/browser/ui/cocoa/themed_window.h"
+
+@class NSVisualEffectView;
+extern NSString* const NSAppearanceNameVibrantDark;
Robert Sesek 2017/01/11 19:23:40 Why did these get moved out of sdk_forward_declara
+extern NSString* const NSAppearanceNameVibrantLight;
+
+@interface NSAppearance (AllowsVibrancy)
+@property(readonly) BOOL allowsVibrancy;
+@end
+
+@interface TabStripBackgroundView ()<ThemedWindowDrawing>
+@end
+
+#endif // CHROME_BROWSER_UI_COCOA_TABS_TAB_STRIP_BACKGROUND_VIEW_PRIVATE_H_

Powered by Google App Engine
This is Rietveld 408576698