Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Unified Diff: extensions/browser/external_install_info.cc

Issue 1909773002: Convert //extensions/browser from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/browser/external_install_info.h ('k') | extensions/browser/external_provider_interface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/external_install_info.cc
diff --git a/extensions/browser/external_install_info.cc b/extensions/browser/external_install_info.cc
index e6da3fa8a2c38dc7ddd3702f16798a366713cbe8..d37c0f38d14b2c7b0473ba930b71566f78ec7dea 100644
--- a/extensions/browser/external_install_info.cc
+++ b/extensions/browser/external_install_info.cc
@@ -18,7 +18,7 @@ ExternalInstallInfo::ExternalInstallInfo(const std::string& extension_id,
ExternalInstallInfoFile::ExternalInstallInfoFile(
const std::string& extension_id,
- scoped_ptr<base::Version> version,
+ std::unique_ptr<base::Version> version,
const base::FilePath& path,
Manifest::Location crx_location,
int creation_flags,
@@ -35,7 +35,7 @@ ExternalInstallInfoFile::~ExternalInstallInfoFile() {}
ExternalInstallInfoUpdateUrl::ExternalInstallInfoUpdateUrl(
const std::string& extension_id,
const std::string& install_parameter,
- scoped_ptr<GURL> update_url,
+ std::unique_ptr<GURL> update_url,
Manifest::Location download_location,
int creation_flags,
bool mark_acknowledged)
« no previous file with comments | « extensions/browser/external_install_info.h ('k') | extensions/browser/external_provider_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698