| Index: chrome/browser/ui/app_list/app_context_menu_unittest.cc
|
| diff --git a/chrome/browser/ui/app_list/app_context_menu_unittest.cc b/chrome/browser/ui/app_list/app_context_menu_unittest.cc
|
| index 2db8878ad283038ad32be7f70b822fab5f3c8f3e..9483db16997083eecde6853af76e1550c7f47e7a 100644
|
| --- a/chrome/browser/ui/app_list/app_context_menu_unittest.cc
|
| +++ b/chrome/browser/ui/app_list/app_context_menu_unittest.cc
|
| @@ -79,7 +79,8 @@ class FakeAppListControllerDelegate :
|
| DISALLOW_COPY_AND_ASSIGN(FakeAppListControllerDelegate);
|
| };
|
|
|
| -scoped_ptr<KeyedService> MenuManagerFactory(content::BrowserContext* context) {
|
| +std::unique_ptr<KeyedService> MenuManagerFactory(
|
| + content::BrowserContext* context) {
|
| return extensions::MenuManagerFactory::BuildServiceInstanceForTesting(
|
| context);
|
| }
|
| @@ -275,9 +276,9 @@ class AppContextMenuTest : public AppListTestBase {
|
| }
|
|
|
| private:
|
| - scoped_ptr<KeyedService> menu_manager_;
|
| - scoped_ptr<FakeAppListControllerDelegate> controller_;
|
| - scoped_ptr<FakeAppContextMenuDelegate> menu_delegate_;
|
| + std::unique_ptr<KeyedService> menu_manager_;
|
| + std::unique_ptr<FakeAppListControllerDelegate> controller_;
|
| + std::unique_ptr<FakeAppContextMenuDelegate> menu_delegate_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AppContextMenuTest);
|
| };
|
|
|