| Index: ui/base/cocoa/controls/hyperlink_button_cell_unittest.mm
|
| diff --git a/chrome/browser/ui/cocoa/hyperlink_button_cell_unittest.mm b/ui/base/cocoa/controls/hyperlink_button_cell_unittest.mm
|
| similarity index 95%
|
| rename from chrome/browser/ui/cocoa/hyperlink_button_cell_unittest.mm
|
| rename to ui/base/cocoa/controls/hyperlink_button_cell_unittest.mm
|
| index 18abc03be479290dda894367fd6637cd9830b7ad..aaf5f28890c3109f2968a0125bc7d3696d4dc35c 100644
|
| --- a/chrome/browser/ui/cocoa/hyperlink_button_cell_unittest.mm
|
| +++ b/ui/base/cocoa/controls/hyperlink_button_cell_unittest.mm
|
| @@ -2,14 +2,19 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#import "ui/base/cocoa/controls/hyperlink_button_cell.h"
|
| +
|
| #import <Cocoa/Cocoa.h>
|
|
|
| #include "base/mac/foundation_util.h"
|
| #include "base/mac/scoped_nsobject.h"
|
| -#import "chrome/browser/ui/cocoa/cocoa_test_helper.h"
|
| -#import "chrome/browser/ui/cocoa/hyperlink_button_cell.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "testing/platform_test.h"
|
| +#import "ui/base/test/ui_cocoa_test_helper.h"
|
| +
|
| +namespace ui {
|
| +
|
| +namespace {
|
|
|
| class HyperlinkButtonCellTest : public CocoaTest {
|
| public:
|
| @@ -109,3 +114,7 @@ TEST_F(HyperlinkButtonCellTest, UnderlineOnHover) {
|
| [cell_ mouseExited:nil];
|
| EXPECT_FALSE(HasUnderlineAttribute([cell_ linkAttributes]));
|
| }
|
| +
|
| +} // namespace
|
| +
|
| +} // namespace ui
|
|
|