Index: chrome/browser/sync_file_system/local/local_file_sync_context_unittest.cc |
diff --git a/chrome/browser/sync_file_system/local/local_file_sync_context_unittest.cc b/chrome/browser/sync_file_system/local/local_file_sync_context_unittest.cc |
index bcca037bc3809915f7b0a6ce9f5036856630aa58..e09596e370edcd7afc72172cac5b48d19f639d7e 100644 |
--- a/chrome/browser/sync_file_system/local/local_file_sync_context_unittest.cc |
+++ b/chrome/browser/sync_file_system/local/local_file_sync_context_unittest.cc |
@@ -5,7 +5,7 @@ |
#include "chrome/browser/sync_file_system/local/local_file_sync_context.h" |
#include <stdint.h> |
- |
+#include <utility> |
#include <vector> |
#include "base/bind.h" |
@@ -134,7 +134,7 @@ class LocalFileSyncContextTest : public testing::Test { |
*metadata_out = sync_file_info.metadata; |
*changes_out = sync_file_info.changes; |
if (snapshot_out) |
- *snapshot_out = snapshot.Pass(); |
+ *snapshot_out = std::move(snapshot); |
base::MessageLoop::current()->QuitWhenIdle(); |
} |