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

Unified Diff: chrome/browser/extensions/api/screenlock_private/screenlock_private_api.h

Issue 592893002: Rename ScreelockBridge to SigninScreenBridge Base URL: https://chromium.googlesource.com/chromium/src.git@easy_signin_auth_handler
Patch Set: Created 6 years, 3 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/extensions/api/screenlock_private/screenlock_private_api.h
diff --git a/chrome/browser/extensions/api/screenlock_private/screenlock_private_api.h b/chrome/browser/extensions/api/screenlock_private/screenlock_private_api.h
index dbdf8f472c3c96a79a9f6b4e71ba0bf810dc8e88..654dd19f461b9f2996871051e71ab1bc7d7437ab 100644
--- a/chrome/browser/extensions/api/screenlock_private/screenlock_private_api.h
+++ b/chrome/browser/extensions/api/screenlock_private/screenlock_private_api.h
@@ -8,7 +8,7 @@
#include <string>
#include "chrome/browser/extensions/chrome_extension_function.h"
-#include "chrome/browser/signin/screenlock_bridge.h"
+#include "chrome/browser/signin/signin_screen_bridge.h"
#include "extensions/browser/browser_context_keyed_api_factory.h"
namespace extensions {
@@ -51,12 +51,12 @@ class ScreenlockPrivateAcceptAuthAttemptFunction
};
class ScreenlockPrivateEventRouter : public extensions::BrowserContextKeyedAPI,
- public ScreenlockBridge::Observer {
+ public SigninScreenBridge::Observer {
public:
explicit ScreenlockPrivateEventRouter(content::BrowserContext* context);
virtual ~ScreenlockPrivateEventRouter();
- bool OnAuthAttempted(ScreenlockBridge::LockHandler::AuthType auth_type,
+ bool OnAuthAttempted(SigninScreenBridge::LockHandler::AuthType auth_type,
const std::string& value);
// BrowserContextKeyedAPI
@@ -65,7 +65,7 @@ class ScreenlockPrivateEventRouter : public extensions::BrowserContextKeyedAPI,
GetFactoryInstance();
virtual void Shutdown() OVERRIDE;
- // ScreenlockBridge::Observer
+ // SigninScreenBridge::Observer
virtual void OnScreenDidLock() OVERRIDE;
virtual void OnScreenDidUnlock() OVERRIDE;
virtual void OnFocusedUserChanged(const std::string& user_id) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698