| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_BUTTON_FACTORY_H_ | 5 #ifndef IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_BUTTON_FACTORY_H_ |
| 6 #define IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_BUTTON_FACTORY_H_ | 6 #define IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_BUTTON_FACTORY_H_ |
| 7 | 7 |
| 8 #import <UIKit/UIKit.h> | 8 #import <UIKit/UIKit.h> |
| 9 | 9 |
| 10 #import "ios/clean/chrome/browser/ui/toolbar/toolbar_button.h" | 10 #import "ios/clean/chrome/browser/ui/toolbar/toolbar_button.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 // Tab Switcher Grid ToolbarButton. | 22 // Tab Switcher Grid ToolbarButton. |
| 23 + (instancetype)tabSwitcherGridToolbarButton; | 23 + (instancetype)tabSwitcherGridToolbarButton; |
| 24 // Tools Menu ToolbarButton. | 24 // Tools Menu ToolbarButton. |
| 25 + (instancetype)toolsMenuToolbarButton; | 25 + (instancetype)toolsMenuToolbarButton; |
| 26 // Share ToolbarButton. | 26 // Share ToolbarButton. |
| 27 + (instancetype)shareToolbarButton; | 27 + (instancetype)shareToolbarButton; |
| 28 // Reload ToolbarButton. | 28 // Reload ToolbarButton. |
| 29 + (instancetype)reloadToolbarButton; | 29 + (instancetype)reloadToolbarButton; |
| 30 // Stop ToolbarButton. | 30 // Stop ToolbarButton. |
| 31 + (instancetype)stopToolbarButton; | 31 + (instancetype)stopToolbarButton; |
| 32 // Star ToolbarButton. |
| 33 + (instancetype)starToolbarButton; |
| 32 | 34 |
| 33 @end | 35 @end |
| 34 | 36 |
| 35 #endif // IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_BUTTON_FACTORY_H_ | 37 #endif // IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_BUTTON_FACTORY_H_ |
| OLD | NEW |