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

Unified Diff: chrome/browser/prefs/command_line_pref_store_proxy_unittest.cc

Issue 1551503002: Convert Pass()→std::move() in //chrome (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: chrome/browser/prefs/command_line_pref_store_proxy_unittest.cc
diff --git a/chrome/browser/prefs/command_line_pref_store_proxy_unittest.cc b/chrome/browser/prefs/command_line_pref_store_proxy_unittest.cc
index f05ac53ea3f046f3e190a2488fdae2a15eb7534a..f38358e57f2dd850293dad236c1ae1ed90cb8921 100644
--- a/chrome/browser/prefs/command_line_pref_store_proxy_unittest.cc
+++ b/chrome/browser/prefs/command_line_pref_store_proxy_unittest.cc
@@ -174,7 +174,7 @@ class CommandLinePrefStoreProxyTest
PrefProxyConfigTrackerImpl::RegisterPrefs(registry.get());
syncable_prefs::PrefServiceMockFactory factory;
factory.set_command_line_prefs(new CommandLinePrefStore(&command_line_));
- pref_service_ = factory.Create(registry.get()).Pass();
+ pref_service_ = factory.Create(registry.get());
PrefProxyConfigTrackerImpl::ReadPrefConfig(pref_service_.get(),
&proxy_config_);
}

Powered by Google App Engine
This is Rietveld 408576698