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 #import "chrome/browser/ui/cocoa/toolbar/app_toolbar_button_cell.h" | 5 #import "chrome/browser/ui/cocoa/toolbar/app_toolbar_button_cell.h" |
6 | 6 |
| 7 #include "base/macros.h" |
7 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
8 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" | 9 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" |
9 | 10 |
10 @interface TestAppToolbarButton : NSButton | 11 @interface TestAppToolbarButton : NSButton |
11 @end | 12 @end |
12 | 13 |
13 @implementation TestAppToolbarButton | 14 @implementation TestAppToolbarButton |
14 | 15 |
15 + (Class)cellClass { | 16 + (Class)cellClass { |
16 return [AppToolbarButtonCell class]; | 17 return [AppToolbarButtonCell class]; |
(...skipping 12 matching lines...) Expand all Loading... |
29 | 30 |
30 NSButton* button_; | 31 NSButton* button_; |
31 base::scoped_nsobject<AppToolbarButtonCell> cell_; | 32 base::scoped_nsobject<AppToolbarButtonCell> cell_; |
32 base::MessageLoopForUI message_loop_; // Needed for gfx::Animation. | 33 base::MessageLoopForUI message_loop_; // Needed for gfx::Animation. |
33 | 34 |
34 private: | 35 private: |
35 DISALLOW_COPY_AND_ASSIGN(AppToolbarButtonCellTest); | 36 DISALLOW_COPY_AND_ASSIGN(AppToolbarButtonCellTest); |
36 }; | 37 }; |
37 | 38 |
38 TEST_VIEW(AppToolbarButtonCellTest, button_) | 39 TEST_VIEW(AppToolbarButtonCellTest, button_) |
OLD | NEW |