| Index: chrome/browser/sync/glue/sync_backend_host.h
|
| diff --git a/chrome/browser/sync/glue/sync_backend_host.h b/chrome/browser/sync/glue/sync_backend_host.h
|
| index 0d1da2579f45544734dfeb5f20b3af249f229416..1d663815b77b4d5273ff2a6cd5812791012c5143 100644
|
| --- a/chrome/browser/sync/glue/sync_backend_host.h
|
| +++ b/chrome/browser/sync/glue/sync_backend_host.h
|
| @@ -378,12 +378,6 @@ class SyncBackendHost : public BackendDataTypeConfigurer {
|
| INITIALIZED, // Initialization is complete.
|
| };
|
|
|
| - // Enum used to distinguish which bootstrap encryption token is being updated.
|
| - enum BootstrapTokenType {
|
| - PASSPHRASE_BOOTSTRAP_TOKEN,
|
| - KEYSTORE_BOOTSTRAP_TOKEN
|
| - };
|
| -
|
| // Checks if we have received a notice to turn on experimental datatypes
|
| // (via the nigori node) and informs the frontend if that is the case.
|
| // Note: it is illegal to call this before the backend is initialized.
|
| @@ -414,7 +408,7 @@ class SyncBackendHost : public BackendDataTypeConfigurer {
|
| // storage.
|
| void PersistEncryptionBootstrapToken(
|
| const std::string& token,
|
| - BootstrapTokenType token_type);
|
| + syncer::BootstrapTokenType token_type);
|
|
|
| // For convenience, checks if initialization state is INITIALIZED.
|
| bool initialized() const { return initialization_state_ == INITIALIZED; }
|
|
|