Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: chrome/browser/ui/cocoa/toolbar/app_toolbar_button_cell_unittest.mm

Issue 2565813002: Create c/b/ui/cocoa/test and move test files to there (Closed)
Patch Set: Rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/macros.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" 9 #import "chrome/browser/ui/cocoa/test/cocoa_test_helper.h"
10 10
11 @interface TestAppToolbarButton : NSButton 11 @interface TestAppToolbarButton : NSButton
12 @end 12 @end
13 13
14 @implementation TestAppToolbarButton 14 @implementation TestAppToolbarButton
15 15
16 + (Class)cellClass { 16 + (Class)cellClass {
17 return [AppToolbarButtonCell class]; 17 return [AppToolbarButtonCell class];
18 } 18 }
19 19
(...skipping 10 matching lines...) Expand all
30 30
31 NSButton* button_; 31 NSButton* button_;
32 base::scoped_nsobject<AppToolbarButtonCell> cell_; 32 base::scoped_nsobject<AppToolbarButtonCell> cell_;
33 base::MessageLoopForUI message_loop_; // Needed for gfx::Animation. 33 base::MessageLoopForUI message_loop_; // Needed for gfx::Animation.
34 34
35 private: 35 private:
36 DISALLOW_COPY_AND_ASSIGN(AppToolbarButtonCellTest); 36 DISALLOW_COPY_AND_ASSIGN(AppToolbarButtonCellTest);
37 }; 37 };
38 38
39 TEST_VIEW(AppToolbarButtonCellTest, button_) 39 TEST_VIEW(AppToolbarButtonCellTest, button_)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698