| Index: components/offline_pages/snapshot_controller.h
|
| diff --git a/components/offline_pages/snapshot_controller.h b/components/offline_pages/snapshot_controller.h
|
| index 00a2edf7ff8a2dd526dccd52feadd780487edaa6..433ef48f9d73f17fd4277605ae4f996c458efdb6 100644
|
| --- a/components/offline_pages/snapshot_controller.h
|
| +++ b/components/offline_pages/snapshot_controller.h
|
| @@ -25,10 +25,11 @@ namespace offline_pages {
|
| // reset so no StartSnapshot calls is made 'cross-session'.
|
| class SnapshotController {
|
| public:
|
| - // kStateReady - listening to input, will start snapshot when needed.
|
| - // kStateSnapshotPending - snapshot is in progress, don't start another.
|
| - // kStateStopped - terminal state, no snapshots until reset.
|
| - enum class State { kReady, kSnapshotPending, kStopped };
|
| + enum class State {
|
| + READY, // Listening to input, will start snapshot when needed.
|
| + SNAPSHOT_PENDING, // Snapshot is in progress, don't start another.
|
| + STOPPED, // Terminal state, no snapshots until reset.
|
| + };
|
|
|
| // Client of the SnapshotController.
|
| class Client {
|
|
|