| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_SYNC_DRIVER_FAKE_SYNC_SERVICE_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_FAKE_SYNC_SERVICE_H_ |
| 6 #define COMPONENTS_SYNC_DRIVER_FAKE_SYNC_SERVICE_H_ | 6 #define COMPONENTS_SYNC_DRIVER_FAKE_SYNC_SERVICE_H_ |
| 7 | 7 |
| 8 #include <string> |
| 9 |
| 8 #include "components/sync_driver/sync_service.h" | 10 #include "components/sync_driver/sync_service.h" |
| 9 #include "google_apis/gaia/google_service_auth_error.h" | 11 #include "google_apis/gaia/google_service_auth_error.h" |
| 10 #include "sync/internal_api/public/sessions/sync_session_snapshot.h" | 12 #include "sync/internal_api/public/sessions/sync_session_snapshot.h" |
| 11 | 13 |
| 12 namespace syncer { | 14 namespace syncer { |
| 13 class BaseTransaction; | 15 class BaseTransaction; |
| 14 struct UserShare; | 16 struct UserShare; |
| 15 } | 17 } |
| 16 | 18 |
| 17 namespace sync_driver { | 19 namespace sync_driver { |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 | 94 |
| 93 GoogleServiceAuthError error_; | 95 GoogleServiceAuthError error_; |
| 94 GURL sync_service_url_; | 96 GURL sync_service_url_; |
| 95 std::string unrecoverable_error_message_; | 97 std::string unrecoverable_error_message_; |
| 96 scoped_ptr<syncer::UserShare> user_share_; | 98 scoped_ptr<syncer::UserShare> user_share_; |
| 97 }; | 99 }; |
| 98 | 100 |
| 99 } // namespace sync_driver | 101 } // namespace sync_driver |
| 100 | 102 |
| 101 #endif // COMPONENTS_SYNC_DRIVER_FAKE_SYNC_SERVICE_H_ | 103 #endif // COMPONENTS_SYNC_DRIVER_FAKE_SYNC_SERVICE_H_ |
| OLD | NEW |