| 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 #import <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
| 6 | 6 |
| 7 #include "base/mac/scoped_nsobject.h" | 7 #include "base/mac/scoped_nsobject.h" |
| 8 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" | |
| 9 #import "chrome/browser/ui/cocoa/gradient_button_cell.h" | 8 #import "chrome/browser/ui/cocoa/gradient_button_cell.h" |
| 9 #import "chrome/browser/ui/cocoa/test/cocoa_test_helper.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 11 #include "testing/platform_test.h" | 11 #include "testing/platform_test.h" |
| 12 #import "ui/events/test/cocoa_test_event_utils.h" | 12 #import "ui/events/test/cocoa_test_event_utils.h" |
| 13 | 13 |
| 14 @interface GradientButtonCell (HoverValueTesting) | 14 @interface GradientButtonCell (HoverValueTesting) |
| 15 - (void)performOnePulseStep; | 15 - (void)performOnePulseStep; |
| 16 @end | 16 @end |
| 17 | 17 |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 } | 111 } |
| 112 | 112 |
| 113 // Test drawing when first responder, mostly to ensure nothing leaks or | 113 // Test drawing when first responder, mostly to ensure nothing leaks or |
| 114 // crashes. | 114 // crashes. |
| 115 TEST_F(GradientButtonCellTest, FirstResponder) { | 115 TEST_F(GradientButtonCellTest, FirstResponder) { |
| 116 [test_window() makePretendKeyWindowAndSetFirstResponder:view_]; | 116 [test_window() makePretendKeyWindowAndSetFirstResponder:view_]; |
| 117 [view_ display]; | 117 [view_ display]; |
| 118 } | 118 } |
| 119 | 119 |
| 120 } // namespace | 120 } // namespace |
| OLD | NEW |