Chromium Code Reviews| Index: chrome/browser/sync/internal_api/sync_manager.cc |
| diff --git a/chrome/browser/sync/internal_api/sync_manager.cc b/chrome/browser/sync/internal_api/sync_manager.cc |
| index c0b9cb35ff7e9c075139b36b90fff849a036970b..33a31e253774a34a79372ac3e2f5ef68bb4d8f10 100644 |
| --- a/chrome/browser/sync/internal_api/sync_manager.cc |
| +++ b/chrome/browser/sync/internal_api/sync_manager.cc |
| @@ -787,6 +787,10 @@ bool SyncManager::SyncInternal::Init( |
| initialized_ = true; |
| + // The following calls check that initialized_ is true. |
|
Nicolas Zea
2011/08/25 01:22:46
We can get rid of this comment, it no longer appli
|
| + |
|
tim (not reviewing)
2011/08/25 15:42:43
remove extra newline.
|
| + BootstrapEncryption(restored_key_for_bootstrapping); |
| + |
| // Notify that initialization is complete. |
| ObserverList<SyncManager::Observer> temp_obs_list; |
| CopyObservers(&temp_obs_list); |
| @@ -794,10 +798,6 @@ bool SyncManager::SyncInternal::Init( |
| OnInitializationComplete( |
| WeakHandle<JsBackend>(weak_ptr_factory_.GetWeakPtr()))); |
| - // The following calls check that initialized_ is true. |
| - |
| - BootstrapEncryption(restored_key_for_bootstrapping); |
| - |
| sync_notifier_->AddObserver(this); |
| return signed_in; |