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

Unified Diff: chrome/installer/util/chrome_frame_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, 6 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/chrome_frame_distribution.cc
diff --git a/chrome/installer/util/chrome_frame_distribution.cc b/chrome/installer/util/chrome_frame_distribution.cc
index 385ba2f986f2eddd388f0e6de8d31c9b094e3cc8..67dc86cd40a71246742cd1a28809115b32e3af0d 100644
--- a/chrome/installer/util/chrome_frame_distribution.cc
+++ b/chrome/installer/util/chrome_frame_distribution.cc
@@ -27,7 +27,8 @@ const wchar_t kChromeFrameGuid[] = L"{8BA986DA-5100-405E-AA35-86F34A02ACBF}";
ChromeFrameDistribution::ChromeFrameDistribution()
: BrowserDistribution(CHROME_FRAME,
- make_scoped_ptr(new UpdatingAppRegistrationData(kChromeFrameGuid))) {
+ make_scoped_ptr(new UpdatingAppRegistrationData(
+ kChromeFrameGuid)).Pass()) {
}
base::string16 ChromeFrameDistribution::GetBaseAppName() {

Powered by Google App Engine
This is Rietveld 408576698