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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #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
6 #define CHROME_BROWSER_UI_COCOA_TABS_TAB_STRIP_BACKGROUND_VIEW_PRIVATE_H_
7
8 #include "chrome/browser/ui/cocoa/tabs/tab_strip_background_view.h"
9
10 #import "chrome/browser/ui/cocoa/themed_window.h"
11
12 @class NSVisualEffectView;
13 extern NSString* const NSAppearanceNameVibrantDark;
Robert Sesek 2017/01/11 19:23:40 Why did these get moved out of sdk_forward_declara
14 extern NSString* const NSAppearanceNameVibrantLight;
15
16 @interface NSAppearance (AllowsVibrancy)
17 @property(readonly) BOOL allowsVibrancy;
18 @end
19
20 @interface TabStripBackgroundView ()<ThemedWindowDrawing>
21 @end
22
23 #endif // CHROME_BROWSER_UI_COCOA_TABS_TAB_STRIP_BACKGROUND_VIEW_PRIVATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698