| OLD | NEW | 
|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" |  | 
| 7 #import "chrome/browser/ui/cocoa/image_button_cell.h" | 6 #import "chrome/browser/ui/cocoa/image_button_cell.h" | 
|  | 7 #import "chrome/browser/ui/cocoa/test/cocoa_test_helper.h" | 
| 8 #include "chrome/grit/theme_resources.h" | 8 #include "chrome/grit/theme_resources.h" | 
| 9 | 9 | 
| 10 namespace { | 10 namespace { | 
| 11 | 11 | 
| 12 class ImageButtonCellTest : public CocoaTest { | 12 class ImageButtonCellTest : public CocoaTest { | 
| 13  public: | 13  public: | 
| 14   ImageButtonCellTest() { | 14   ImageButtonCellTest() { | 
| 15     NSRect frame = NSMakeRect(0, 0, 50, 30); | 15     NSRect frame = NSMakeRect(0, 0, 50, 30); | 
| 16     base::scoped_nsobject<NSButton> view( | 16     base::scoped_nsobject<NSButton> view( | 
| 17         [[NSButton alloc] initWithFrame:frame]); | 17         [[NSButton alloc] initWithFrame:frame]); | 
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 83             forButtonState:image_button_cell::kDefaultState]; | 83             forButtonState:image_button_cell::kDefaultState]; | 
| 84   [view_ display]; | 84   [view_ display]; | 
| 85   EXPECT_FALSE([view_ needsDisplay]); | 85   EXPECT_FALSE([view_ needsDisplay]); | 
| 86 | 86 | 
| 87   [[view_ cell] setImageID:IDR_FORWARD_D | 87   [[view_ cell] setImageID:IDR_FORWARD_D | 
| 88             forButtonState:image_button_cell::kDefaultState]; | 88             forButtonState:image_button_cell::kDefaultState]; | 
| 89   EXPECT_TRUE([view_ needsDisplay]); | 89   EXPECT_TRUE([view_ needsDisplay]); | 
| 90 } | 90 } | 
| 91 | 91 | 
| 92 } // namespace | 92 } // namespace | 
| OLD | NEW | 
|---|