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

Unified Diff: chrome/installer/util/google_chrome_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_distribution.cc
diff --git a/chrome/installer/util/google_chrome_distribution.cc b/chrome/installer/util/google_chrome_distribution.cc
index 3d1522d6a17b0310f42a21dd9c98c2696c34e8ed..e287e87e6d957a9deb3f383d3bbb3f82305bed39 100644
--- a/chrome/installer/util/google_chrome_distribution.cc
+++ b/chrome/installer/util/google_chrome_distribution.cc
@@ -63,8 +63,8 @@ base::string16 GetUninstallSurveyUrl() {
GoogleChromeDistribution::GoogleChromeDistribution()
: BrowserDistribution(CHROME_BROWSER,
- make_scoped_ptr(
- new UpdatingAppRegistrationData(kChromeGuid))) {
+ scoped_ptr<AppRegistrationData>(
+ new UpdatingAppRegistrationData(kChromeGuid))) {
}
GoogleChromeDistribution::GoogleChromeDistribution(

Powered by Google App Engine
This is Rietveld 408576698