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

Unified Diff: chrome/installer/util/google_chrome_sxs_distribution.cc

Issue 1878313003: Convert //chrome/installer from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert decompress.cc in mini_installer. 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
Index: chrome/installer/util/google_chrome_sxs_distribution.cc
diff --git a/chrome/installer/util/google_chrome_sxs_distribution.cc b/chrome/installer/util/google_chrome_sxs_distribution.cc
index 471f880bfac3ecad8be0923a9d62befa3753797d..e43698b23b6ceba443f2dd65af839257fcbc43eb 100644
--- a/chrome/installer/util/google_chrome_sxs_distribution.cc
+++ b/chrome/installer/util/google_chrome_sxs_distribution.cc
@@ -25,9 +25,8 @@ const wchar_t kCommandExecuteImplUuid[] =
} // namespace
GoogleChromeSxSDistribution::GoogleChromeSxSDistribution()
- : GoogleChromeDistribution(scoped_ptr<AppRegistrationData>(
- new UpdatingAppRegistrationData(kChromeSxSGuid))) {
-}
+ : GoogleChromeDistribution(std::unique_ptr<AppRegistrationData>(
+ new UpdatingAppRegistrationData(kChromeSxSGuid))) {}
base::string16 GoogleChromeSxSDistribution::GetBaseAppName() {
return L"Google Chrome Canary";
« no previous file with comments | « chrome/installer/util/google_chrome_distribution_dummy.cc ('k') | chrome/installer/util/google_update_settings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698