| Index: ui/base/cocoa/tracking_area_unittest.mm
|
| diff --git a/chrome/browser/ui/cocoa/tracking_area_unittest.mm b/ui/base/cocoa/tracking_area_unittest.mm
|
| similarity index 95%
|
| rename from chrome/browser/ui/cocoa/tracking_area_unittest.mm
|
| rename to ui/base/cocoa/tracking_area_unittest.mm
|
| index 27e572d4c996417f806dcbff53a289cf58c86ea3..487aa89f59ed3c856cb1cf3ce72ee649b85e0a44 100644
|
| --- a/chrome/browser/ui/cocoa/tracking_area_unittest.mm
|
| +++ b/ui/base/cocoa/tracking_area_unittest.mm
|
| @@ -3,8 +3,8 @@
|
| // found in the LICENSE file.
|
|
|
| #include "base/memory/scoped_nsobject.h"
|
| -#include "chrome/browser/ui/cocoa/cocoa_test_helper.h"
|
| -#import "chrome/browser/ui/cocoa/tracking_area.h"
|
| +#import "ui/base/cocoa/tracking_area.h"
|
| +#import "ui/base/test/ui_cocoa_test_helper.h"
|
|
|
| // A test object that counts the number of times a message is sent to it.
|
| @interface TestTrackingAreaOwner : NSObject {
|
| @@ -22,6 +22,8 @@
|
| }
|
| @end
|
|
|
| +namespace ui {
|
| +
|
| class CrTrackingAreaTest : public CocoaTest {
|
| public:
|
| CrTrackingAreaTest()
|
| @@ -95,3 +97,5 @@ TEST_F(CrTrackingAreaTest, ScoperReset) {
|
| [[trackingArea_ owner] performMessage];
|
| EXPECT_EQ(2U, [owner_ messageCount]);
|
| }
|
| +
|
| +} // namespace ui
|
|
|