Chromium Code Reviews| Index: chrome/browser/ui/cocoa/tabs/tab_controller.h |
| diff --git a/chrome/browser/ui/cocoa/tabs/tab_controller.h b/chrome/browser/ui/cocoa/tabs/tab_controller.h |
| index 155ce2bd96c557617a5d91be243faa3aefc353bb..57449dbb4983920438db246a656804eec4dde6f8 100644 |
| --- a/chrome/browser/ui/cocoa/tabs/tab_controller.h |
| +++ b/chrome/browser/ui/cocoa/tabs/tab_controller.h |
| @@ -76,6 +76,7 @@ class MenuDelegate; |
| @property(assign, nonatomic) BOOL selected; |
| @property(assign, nonatomic) id target; |
| @property(assign, nonatomic) GURL url; |
| +@property(assign, nonatomic) BOOL shouldUseDefaultFavicon; |
| @property(readonly, nonatomic) NSView* iconView; |
| @property(readonly, nonatomic) AlertIndicatorButton* alertIndicatorButton; |
| @property(readonly, nonatomic) HoverCloseButton* closeButton; |
| @@ -124,6 +125,11 @@ class MenuDelegate; |
| // Update the title color to match the tabs current state. |
| - (void)updateTitleColor; |
| + |
| +// Update the favicon's color if we're using the default favicon and is using |
| +// Material Design. |
| +- (void)updateDefaultFavicon; |
|
Robert Sesek
2016/07/12 23:43:56
Does this need to be public?
spqchan
2016/07/13 17:16:14
Done.
|
| + |
| @end |
| @interface TabController(TestingAPI) |