| Index: chrome/common/extensions/manifest_handlers/copresence_manifest.cc
|
| diff --git a/chrome/common/extensions/manifest_handlers/copresence_manifest.cc b/chrome/common/extensions/manifest_handlers/copresence_manifest.cc
|
| index dca92f2a3adbf6104f709bdf4fa5daed05c61c42..486d07fb0f7f2689f579dce7f60f2ff196a11da5 100644
|
| --- a/chrome/common/extensions/manifest_handlers/copresence_manifest.cc
|
| +++ b/chrome/common/extensions/manifest_handlers/copresence_manifest.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "chrome/common/extensions/manifest_handlers/copresence_manifest.h"
|
|
|
| +#include <memory>
|
| #include <string>
|
| #include <vector>
|
|
|
| @@ -29,7 +30,8 @@ bool CopresenceManifestHandler::Parse(Extension* extension,
|
| return false;
|
| }
|
|
|
| - scoped_ptr<CopresenceManifestData> manifest_data(new CopresenceManifestData);
|
| + std::unique_ptr<CopresenceManifestData> manifest_data(
|
| + new CopresenceManifestData);
|
| if (!copresence_config->GetString(manifest_values::kApiKey,
|
| &manifest_data->api_key) ||
|
| manifest_data->api_key.empty()) {
|
|
|