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

Unified Diff: google_apis/drive/request_util.cc

Issue 1547233002: Convert Pass()→std::move() in //google_apis (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « google_apis/drive/files_list_request_runner.cc ('k') | google_apis/drive/test_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/drive/request_util.cc
diff --git a/google_apis/drive/request_util.cc b/google_apis/drive/request_util.cc
index 1e552857d4e1efbc656f1892d3ff5e9808d85327..cfaaa7da8c6c29cb01df2544e4ecd5f817b26fd2 100644
--- a/google_apis/drive/request_util.cc
+++ b/google_apis/drive/request_util.cc
@@ -30,7 +30,7 @@ scoped_ptr<base::DictionaryValue> CreateParentValue(
scoped_ptr<base::DictionaryValue> parent(new base::DictionaryValue);
parent->SetString("kind", kParentLinkKind);
parent->SetString("id", file_id);
- return parent.Pass();
+ return parent;
}
} // namespace util
« no previous file with comments | « google_apis/drive/files_list_request_runner.cc ('k') | google_apis/drive/test_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698