| Index: chrome/browser/signin/easy_unlock_service.h
|
| diff --git a/chrome/browser/signin/easy_unlock_service.h b/chrome/browser/signin/easy_unlock_service.h
|
| index 44f54efb231f5b94b21f78dee73653e14cf52e3e..d58e3eecf33be1b327cf82ea88376c0e30860ed0 100644
|
| --- a/chrome/browser/signin/easy_unlock_service.h
|
| +++ b/chrome/browser/signin/easy_unlock_service.h
|
| @@ -105,22 +105,31 @@ class EasyUnlockService : public KeyedService {
|
| // Exposes the profile to which the service is attached to subclasses.
|
| Profile* profile() const { return profile_; }
|
|
|
| - // Installs the Easy unlock component app if it isn't installed or enables
|
| - // the app if it is installed but disabled.
|
| + // Installs the Easy unlock component app if it isn't installed and enables
|
| + // the app if it is disabled.
|
| void LoadApp();
|
|
|
| // Disables the Easy unlock component app if it's loaded.
|
| void DisableAppIfLoaded();
|
|
|
| + // Unloads the Easy unlock component app if it's loaded.
|
| + void UnloadApp();
|
| +
|
| // Reloads the Easy unlock component app if it's loaded.
|
| void ReloadApp();
|
|
|
| // Checks whether Easy unlock should be running and updates app state.
|
| void UpdateAppState();
|
|
|
| + // Notifies the easy unlock app that the user state has been updated.
|
| + void NotifyUserUpdated();
|
| +
|
| // Notifies observers that the turn off flow status changed.
|
| void NotifyTurnOffOperationStatusChanged();
|
|
|
| + // Resets |screenlock_state_handler_|.
|
| + void ResetScreenlockStateHandler();
|
| +
|
| private:
|
| // A class to detect whether a bluetooth adapter is present.
|
| class BluetoothDetector;
|
|
|