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

Unified Diff: chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc

Issue 1096293003: Move screenlock_bridge to components/proximity_auth (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix linux build Created 5 years, 8 months 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_screenlock_state_handler_unittest.cc
diff --git a/chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc b/chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc
index 75aa1b298b488bdcbe4554b236d1a3ea3a3f99f7..97ebd9646be1cfd5b3efa18b68ad8fe7e6472058 100644
--- a/chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc
+++ b/chrome/browser/signin/easy_unlock_screenlock_state_handler_unittest.cc
@@ -13,8 +13,8 @@
#include "base/test/histogram_tester.h"
#include "chrome/browser/signin/easy_unlock_metrics.h"
#include "chrome/browser/signin/easy_unlock_service.h"
-#include "chrome/browser/signin/screenlock_bridge.h"
#include "chrome/grit/generated_resources.h"
+#include "components/signin/content/screenlock_bridge.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/l10n/l10n_util.h"
@@ -96,6 +96,14 @@ class TestLockHandler : public ScreenlockBridge::LockHandler {
ASSERT_FALSE(true) << "Should not be reached.";
}
+ void Lock(content::BrowserContext* browser_context) override {
+ ASSERT_FALSE(true) << "Should not be reached.";
+ }
+
+ void Unlock(content::BrowserContext* browser_context) override {
+ ASSERT_FALSE(true) << "Should not be reached.";
+ }
+
void AttemptEasySignin(const std::string& user_email,
const std::string& secret,
const std::string& key_label) override {

Powered by Google App Engine
This is Rietveld 408576698