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

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

Issue 367403002: Add missing Pass() calls for passing scoped_ptrs on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: :-( Created 6 years, 5 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 570766071219843fca46db5a7c45fdd1f1bdbb57..cd61cbd1bff7cfee9e680cb10026bf8efba258c2 100644
--- a/chrome/installer/util/google_chrome_sxs_distribution.cc
+++ b/chrome/installer/util/google_chrome_sxs_distribution.cc
@@ -26,9 +26,8 @@ const wchar_t kCommandExecuteImplUuid[] =
} // namespace
GoogleChromeSxSDistribution::GoogleChromeSxSDistribution()
- : GoogleChromeDistribution(
- make_scoped_ptr(
- new UpdatingAppRegistrationData(kChromeSxSGuid))) {
+ : GoogleChromeDistribution(scoped_ptr<AppRegistrationData>(
+ new UpdatingAppRegistrationData(kChromeSxSGuid))) {
}
base::string16 GoogleChromeSxSDistribution::GetBaseAppName() {
« no previous file with comments | « chrome/installer/util/google_chrome_distribution_dummy.cc ('k') | components/policy/core/common/registry_dict_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698