| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_SYNC_INTERNAL_API_SYNC_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_INTERNAL_API_SYNC_MANAGER_H_ |
| 6 #define CHROME_BROWSER_SYNC_INTERNAL_API_SYNC_MANAGER_H_ | 6 #define CHROME_BROWSER_SYNC_INTERNAL_API_SYNC_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/callback_old.h" | 11 #include "base/callback_old.h" |
| 12 #include "base/memory/linked_ptr.h" | 12 #include "base/memory/linked_ptr.h" |
| 13 #include "chrome/browser/sync/engine/configure_reason.h" | 13 #include "chrome/browser/sync/internal_api/configure_reason.h" |
| 14 #include "chrome/browser/sync/protocol/password_specifics.pb.h" | 14 #include "chrome/browser/sync/protocol/password_specifics.pb.h" |
| 15 #include "chrome/browser/sync/syncable/model_type.h" | 15 #include "chrome/browser/sync/syncable/model_type.h" |
| 16 #include "chrome/browser/sync/weak_handle.h" | 16 #include "chrome/browser/sync/weak_handle.h" |
| 17 #include "chrome/common/net/gaia/google_service_auth_error.h" | 17 #include "chrome/common/net/gaia/google_service_auth_error.h" |
| 18 | 18 |
| 19 class FilePath; | 19 class FilePath; |
| 20 | 20 |
| 21 namespace base { | 21 namespace base { |
| 22 class DictionaryValue; | 22 class DictionaryValue; |
| 23 } // namespace base | 23 } // namespace base |
| (...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 }; | 544 }; |
| 545 | 545 |
| 546 bool InitialSyncEndedForTypes(syncable::ModelTypeSet types, UserShare* share); | 546 bool InitialSyncEndedForTypes(syncable::ModelTypeSet types, UserShare* share); |
| 547 | 547 |
| 548 // Returns the string representation of a PassphraseRequiredReason value. | 548 // Returns the string representation of a PassphraseRequiredReason value. |
| 549 std::string PassphraseRequiredReasonToString(PassphraseRequiredReason reason); | 549 std::string PassphraseRequiredReasonToString(PassphraseRequiredReason reason); |
| 550 | 550 |
| 551 } // namespace sync_api | 551 } // namespace sync_api |
| 552 | 552 |
| 553 #endif // CHROME_BROWSER_SYNC_INTERNAL_API_SYNC_MANAGER_H_ | 553 #endif // CHROME_BROWSER_SYNC_INTERNAL_API_SYNC_MANAGER_H_ |
| OLD | NEW |