| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CHROME_BROWSER_UI_COCOA_TOOLBAR_APP_TOOLBAR_BUTTON_CELL_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_TOOLBAR_APP_TOOLBAR_BUTTON_CELL_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_TOOLBAR_APP_TOOLBAR_BUTTON_CELL_H_ | 6 #define CHROME_BROWSER_UI_COCOA_TOOLBAR_APP_TOOLBAR_BUTTON_CELL_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include <memory> |
| 11 |
| 11 #import "chrome/browser/ui/cocoa/clickhold_button_cell.h" | 12 #import "chrome/browser/ui/cocoa/clickhold_button_cell.h" |
| 12 #include "chrome/browser/ui/toolbar/app_menu_icon_painter.h" | 13 #include "chrome/browser/ui/toolbar/app_menu_icon_painter.h" |
| 13 | 14 |
| 14 class AppMenuIconPainterDelegateMac; | 15 class AppMenuIconPainterDelegateMac; |
| 15 | 16 |
| 16 // Cell for the app toolbar button. This is used to draw the app menu icon | 17 // Cell for the app toolbar button. This is used to draw the app menu icon |
| 17 // and paint severity levels. | 18 // and paint severity levels. |
| 18 @interface AppToolbarButtonCell : ClickHoldButtonCell { | 19 @interface AppToolbarButtonCell : ClickHoldButtonCell { |
| 19 @private | 20 @private |
| 20 scoped_ptr<AppMenuIconPainter> iconPainter_; | 21 std::unique_ptr<AppMenuIconPainter> iconPainter_; |
| 21 scoped_ptr<AppMenuIconPainterDelegateMac> delegate_; | 22 std::unique_ptr<AppMenuIconPainterDelegateMac> delegate_; |
| 22 } | 23 } |
| 23 | 24 |
| 24 - (void)setSeverity:(AppMenuIconPainter::Severity)severity | 25 - (void)setSeverity:(AppMenuIconPainter::Severity)severity |
| 25 shouldAnimate:(BOOL)shouldAnimate; | 26 shouldAnimate:(BOOL)shouldAnimate; |
| 26 | 27 |
| 27 @end | 28 @end |
| 28 | 29 |
| 29 #endif // CHROME_BROWSER_UI_COCOA_TOOLBAR_APP_TOOLBAR_BUTTON_CELL_H_ | 30 #endif // CHROME_BROWSER_UI_COCOA_TOOLBAR_APP_TOOLBAR_BUTTON_CELL_H_ |
| OLD | NEW |