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 { |