| OLD | NEW | 
|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "base/mac/scoped_nsobject.h" | 5 #include "base/mac/scoped_nsobject.h" | 
| 6 #include "chrome/app/chrome_command_ids.h" | 6 #include "chrome/app/chrome_command_ids.h" | 
| 7 #import "chrome/browser/ui/cocoa/app_menu/app_menu_button_cell.h" | 7 #import "chrome/browser/ui/cocoa/app_menu/app_menu_button_cell.h" | 
| 8 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" | 8 #import "chrome/browser/ui/cocoa/test/cocoa_test_helper.h" | 
| 9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" | 
| 10 #include "testing/platform_test.h" | 10 #include "testing/platform_test.h" | 
| 11 | 11 | 
| 12 @interface TestAppMenuButton : NSButton | 12 @interface TestAppMenuButton : NSButton | 
| 13 @end | 13 @end | 
| 14 @implementation TestAppMenuButton | 14 @implementation TestAppMenuButton | 
| 15 + (Class)cellClass { | 15 + (Class)cellClass { | 
| 16   return [AppMenuButtonCell class]; | 16   return [AppMenuButtonCell class]; | 
| 17 } | 17 } | 
| 18 @end | 18 @end | 
| (...skipping 23 matching lines...) Expand all  Loading... | 
| 42 } | 42 } | 
| 43 | 43 | 
| 44 TEST_F(AppMenuButtonCellTest, DrawHighlight) { | 44 TEST_F(AppMenuButtonCellTest, DrawHighlight) { | 
| 45   ASSERT_TRUE(button_.get()); | 45   ASSERT_TRUE(button_.get()); | 
| 46   [[test_window() contentView] addSubview:button_.get()]; | 46   [[test_window() contentView] addSubview:button_.get()]; | 
| 47   [button_ highlight:YES]; | 47   [button_ highlight:YES]; | 
| 48   [button_ setNeedsDisplay:YES]; | 48   [button_ setNeedsDisplay:YES]; | 
| 49 } | 49 } | 
| 50 | 50 | 
| 51 }  // namespace | 51 }  // namespace | 
| OLD | NEW | 
|---|