| Index: ui/base/cocoa/base_view_unittest.mm
|
| diff --git a/ui/base/cocoa/base_view_unittest.mm b/ui/base/cocoa/base_view_unittest.mm
|
| index a28c6d3edc7d28220fd54740f5b5eebeecd4ed2c..f9b06904e035c78ef4246adaf488eb28a2687152 100644
|
| --- a/ui/base/cocoa/base_view_unittest.mm
|
| +++ b/ui/base/cocoa/base_view_unittest.mm
|
| @@ -4,7 +4,7 @@
|
|
|
| #import <Cocoa/Cocoa.h>
|
|
|
| -#include "base/memory/scoped_nsobject.h"
|
| +#include "base/mac/scoped_nsobject.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "testing/platform_test.h"
|
| #include "ui/base/cocoa/base_view.h"
|
| @@ -16,7 +16,8 @@ class BaseViewTest : public ui::CocoaTest {
|
| public:
|
| BaseViewTest() {
|
| NSRect frame = NSMakeRect(0, 0, 100, 100);
|
| - scoped_nsobject<BaseView> view([[BaseView alloc] initWithFrame:frame]);
|
| + base::scoped_nsobject<BaseView> view(
|
| + [[BaseView alloc] initWithFrame:frame]);
|
| view_ = view.get();
|
| [[test_window() contentView] addSubview:view_];
|
| }
|
|
|