| Index: extensions/shell/browser/shell_extension_system.cc
|
| diff --git a/extensions/shell/browser/shell_extension_system.cc b/extensions/shell/browser/shell_extension_system.cc
|
| index 3fbbf14e42b519daa0f0d2c18ab668a316ac852f..5c14401882976b73af85f39741adfc9c1c6c7b8d 100644
|
| --- a/extensions/shell/browser/shell_extension_system.cc
|
| +++ b/extensions/shell/browser/shell_extension_system.cc
|
| @@ -8,6 +8,7 @@
|
|
|
| #include "base/files/file_path.h"
|
| #include "base/files/file_util.h"
|
| +#include "base/memory/ptr_util.h"
|
| #include "content/public/browser/browser_context.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/notification_details.h"
|
| @@ -178,9 +179,9 @@ ContentVerifier* ShellExtensionSystem::content_verifier() {
|
| return nullptr;
|
| }
|
|
|
| -scoped_ptr<ExtensionSet> ShellExtensionSystem::GetDependentExtensions(
|
| +std::unique_ptr<ExtensionSet> ShellExtensionSystem::GetDependentExtensions(
|
| const Extension* extension) {
|
| - return make_scoped_ptr(new ExtensionSet());
|
| + return base::WrapUnique(new ExtensionSet());
|
| }
|
|
|
| void ShellExtensionSystem::InstallUpdate(const std::string& extension_id,
|
|
|