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

Unified Diff: chrome/browser/signin/easy_unlock_app_manager_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/signin/easy_unlock_app_manager_unittest.cc
diff --git a/chrome/browser/signin/easy_unlock_app_manager_unittest.cc b/chrome/browser/signin/easy_unlock_app_manager_unittest.cc
index 9902e646bf55ce90cb15f02bb28fc16e80491add..51113a14d9e6d0c051c51f6b487bcc6d488fd54c 100644
--- a/chrome/browser/signin/easy_unlock_app_manager_unittest.cc
+++ b/chrome/browser/signin/easy_unlock_app_manager_unittest.cc
@@ -291,9 +291,8 @@ class EasyUnlockAppManagerTest : public testing::Test {
base::CommandLine::ForCurrentProcess()->AppendSwitch(
proximity_auth::switches::kForceLoadEasyUnlockAppInTests);
extensions::ExtensionSystem* extension_system = SetUpExtensionSystem();
- app_manager_ =
- EasyUnlockAppManager::Create(extension_system, IDR_EASY_UNLOCK_MANIFEST,
- GetAppPath()).Pass();
+ app_manager_ = EasyUnlockAppManager::Create(
+ extension_system, IDR_EASY_UNLOCK_MANIFEST, GetAppPath());
}
protected:

Powered by Google App Engine
This is Rietveld 408576698