Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |