| 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/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  Loading... | 
| 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_) | 
| OLD | NEW | 
|---|