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

Unified Diff: content/browser/fileapi/dragged_file_util_unittest.cc

Issue 1545243002: Convert Pass()→std::move() in //content/browser (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
Index: content/browser/fileapi/dragged_file_util_unittest.cc
diff --git a/content/browser/fileapi/dragged_file_util_unittest.cc b/content/browser/fileapi/dragged_file_util_unittest.cc
index 3ef9f8c0afd9a1cf26aa59b2326c8c9d707a88ce..07c983bad4a8c84ff9c3f769337ee362e448b3d3 100644
--- a/content/browser/fileapi/dragged_file_util_unittest.cc
+++ b/content/browser/fileapi/dragged_file_util_unittest.cc
@@ -251,8 +251,8 @@ class DraggedFileUtilTest : public testing::Test {
}
scoped_ptr<storage::FileSystemOperationContext> GetOperationContext() {
- return make_scoped_ptr(new storage::FileSystemOperationContext(
- file_system_context())).Pass();
+ return make_scoped_ptr(
+ new storage::FileSystemOperationContext(file_system_context()));
}

Powered by Google App Engine
This is Rietveld 408576698