| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/sync_driver/model_association_manager.h" | 5 #include "components/sync_driver/model_association_manager.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <functional> | 8 #include <functional> |
| 9 | 9 |
| 10 #include "base/debug/trace_event.h" | 10 #include "base/debug/trace_event.h" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 syncer::THEMES, | 51 syncer::THEMES, |
| 52 syncer::SEARCH_ENGINES, | 52 syncer::SEARCH_ENGINES, |
| 53 syncer::SESSIONS, | 53 syncer::SESSIONS, |
| 54 syncer::APP_NOTIFICATIONS, | 54 syncer::APP_NOTIFICATIONS, |
| 55 syncer::DICTIONARY, | 55 syncer::DICTIONARY, |
| 56 syncer::FAVICON_IMAGES, | 56 syncer::FAVICON_IMAGES, |
| 57 syncer::FAVICON_TRACKING, | 57 syncer::FAVICON_TRACKING, |
| 58 syncer::SUPERVISED_USER_SETTINGS, | 58 syncer::SUPERVISED_USER_SETTINGS, |
| 59 syncer::SUPERVISED_USER_SHARED_SETTINGS, | 59 syncer::SUPERVISED_USER_SHARED_SETTINGS, |
| 60 syncer::ARTICLES, | 60 syncer::ARTICLES, |
| 61 syncer::WIFI_CREDENTIALS, |
| 61 }; | 62 }; |
| 62 | 63 |
| 63 COMPILE_ASSERT(arraysize(kStartOrder) == | 64 COMPILE_ASSERT(arraysize(kStartOrder) == |
| 64 syncer::MODEL_TYPE_COUNT - syncer::FIRST_REAL_MODEL_TYPE, | 65 syncer::MODEL_TYPE_COUNT - syncer::FIRST_REAL_MODEL_TYPE, |
| 65 kStartOrder_IncorrectSize); | 66 kStartOrder_IncorrectSize); |
| 66 | 67 |
| 67 // The amount of time we wait for association to finish. If some types haven't | 68 // The amount of time we wait for association to finish. If some types haven't |
| 68 // finished association by the time, DataTypeManager is notified of the | 69 // finished association by the time, DataTypeManager is notified of the |
| 69 // unfinished types. | 70 // unfinished types. |
| 70 const int64 kAssociationTimeOutInSeconds = 600; | 71 const int64 kAssociationTimeOutInSeconds = 600; |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 | 410 |
| 410 delegate_->OnModelAssociationDone(result); | 411 delegate_->OnModelAssociationDone(result); |
| 411 } | 412 } |
| 412 | 413 |
| 413 base::OneShotTimer<ModelAssociationManager>* | 414 base::OneShotTimer<ModelAssociationManager>* |
| 414 ModelAssociationManager::GetTimerForTesting() { | 415 ModelAssociationManager::GetTimerForTesting() { |
| 415 return &timer_; | 416 return &timer_; |
| 416 } | 417 } |
| 417 | 418 |
| 418 } // namespace sync_driver | 419 } // namespace sync_driver |
| OLD | NEW |