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

Unified Diff: components/syncable_prefs/pref_service_syncable_unittest.cc

Issue 1548203002: Convert Pass()→std::move() in //components/[n-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad headers 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 | « components/syncable_prefs/pref_service_syncable_factory.cc ('k') | components/test_runner/test_plugin.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/syncable_prefs/pref_service_syncable_unittest.cc
diff --git a/components/syncable_prefs/pref_service_syncable_unittest.cc b/components/syncable_prefs/pref_service_syncable_unittest.cc
index cc173d1cca9fe33f8ef2fbd79b7e76bbe006711c..6cde73947c26de8a866b7c4ead30746bc15f64ab 100644
--- a/components/syncable_prefs/pref_service_syncable_unittest.cc
+++ b/components/syncable_prefs/pref_service_syncable_unittest.cc
@@ -263,7 +263,7 @@ TEST_F(PrefServiceSyncableTest, ModelAssociationEmptyCloud) {
scoped_ptr<base::Value> value(FindValue(kStringPrefName, out));
ASSERT_TRUE(value.get());
EXPECT_TRUE(GetPreferenceValue(kStringPrefName).Equals(value.get()));
- value = FindValue(kListPrefName, out).Pass();
+ value = FindValue(kListPrefName, out);
ASSERT_TRUE(value.get());
EXPECT_TRUE(GetPreferenceValue(kListPrefName).Equals(value.get()));
}
« no previous file with comments | « components/syncable_prefs/pref_service_syncable_factory.cc ('k') | components/test_runner/test_plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698