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