| 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/clickhold_button_cell.h" | 8 #import "chrome/browser/ui/cocoa/clickhold_button_cell.h" | 
| 9 #import "chrome/browser/ui/cocoa/cocoa_test_helper.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/gtest_mac.h" | 11 #include "testing/gtest_mac.h" | 
| 12 #include "testing/platform_test.h" | 12 #include "testing/platform_test.h" | 
| 13 | 13 | 
| 14 @interface ClickHoldButtonCellTestTarget : NSObject { | 14 @interface ClickHoldButtonCellTestTarget : NSObject { | 
| 15  @private | 15  @private | 
| 16   BOOL didOpen_; | 16   BOOL didOpen_; | 
| 17 } | 17 } | 
| 18 - (void)open; | 18 - (void)open; | 
| 19 - (BOOL)didOpen; | 19 - (BOOL)didOpen; | 
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 125   [cell setEnableRightClick:YES]; | 125   [cell setEnableRightClick:YES]; | 
| 126 | 126 | 
| 127   actionNames = [cell accessibilityActionNames]; | 127   actionNames = [cell accessibilityActionNames]; | 
| 128   EXPECT_TRUE([actionNames containsObject:NSAccessibilityShowMenuAction]); | 128   EXPECT_TRUE([actionNames containsObject:NSAccessibilityShowMenuAction]); | 
| 129 | 129 | 
| 130   [cell accessibilityPerformAction:NSAccessibilityShowMenuAction]; | 130   [cell accessibilityPerformAction:NSAccessibilityShowMenuAction]; | 
| 131   EXPECT_TRUE([cellTarget didOpen]); | 131   EXPECT_TRUE([cellTarget didOpen]); | 
| 132 } | 132 } | 
| 133 | 133 | 
| 134 }  // namespace | 134 }  // namespace | 
| OLD | NEW | 
|---|