| Index: chrome/browser/ui/cocoa/cocoa_profile_test.h
|
| diff --git a/chrome/browser/ui/cocoa/cocoa_profile_test.h b/chrome/browser/ui/cocoa/cocoa_profile_test.h
|
| index 99a46640102fc91f5ffdf24056d3814e5711982e..ed80a8d9fdf01b86de40f181565eaad8e88a3306 100644
|
| --- a/chrome/browser/ui/cocoa/cocoa_profile_test.h
|
| +++ b/chrome/browser/ui/cocoa/cocoa_profile_test.h
|
| @@ -5,7 +5,8 @@
|
| #ifndef CHROME_BROWSER_UI_COCOA_PROFILE_TEST_H_
|
| #define CHROME_BROWSER_UI_COCOA_PROFILE_TEST_H_
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
| +
|
| #import "chrome/browser/ui/cocoa/cocoa_test_helper.h"
|
| #include "chrome/test/base/testing_profile_manager.h"
|
|
|
| @@ -71,9 +72,9 @@ class CocoaProfileTest : public CocoaTest {
|
| TestingProfileManager profile_manager_;
|
| TestingProfile* profile_; // Weak; owned by profile_manager_.
|
| TestingProfile::TestingFactories testing_factories_;
|
| - scoped_ptr<Browser> browser_;
|
| + std::unique_ptr<Browser> browser_;
|
|
|
| - scoped_ptr<content::TestBrowserThreadBundle> thread_bundle_;
|
| + std::unique_ptr<content::TestBrowserThreadBundle> thread_bundle_;
|
| };
|
|
|
| #endif // CHROME_BROWSER_UI_COCOA_PROFILE_TEST_H_
|
|
|