| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_HISTORY_CORE_BROWSER_TYPED_URL_SYNCABLE_SERVICE_H_ | 5 #ifndef COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_SYNCABLE_SERVICE_H_ |
| 6 #define COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_SYNCABLE_SERVICE_H_ | 6 #define COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_SYNCABLE_SERVICE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <set> | 10 #include <set> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/scoped_observer.h" | 14 #include "base/scoped_observer.h" |
| 15 #include "base/threading/thread_checker.h" | 15 #include "base/threading/thread_checker.h" |
| 16 #include "components/history/core/browser/history_backend_observer.h" | 16 #include "components/history/core/browser/history_backend_observer.h" |
| 17 #include "components/history/core/browser/history_types.h" | 17 #include "components/history/core/browser/history_types.h" |
| 18 #include "components/sync/model/sync_change.h" | 18 #include "components/sync/model/sync_change.h" |
| 19 #include "components/sync/model/sync_data.h" | 19 #include "components/sync/model/sync_data.h" |
| 20 #include "components/sync/model/sync_error.h" | 20 #include "components/sync/model/sync_error.h" |
| 21 #include "components/sync/model/sync_error_factory.h" | 21 #include "components/sync/model/sync_error_factory.h" |
| 22 #include "components/sync/model/syncable_service.h" | 22 #include "components/sync/model/syncable_service.h" |
| 23 #include "ui/base/page_transition_types.h" | 23 #include "ui/base/page_transition_types.h" |
| 24 | 24 |
| 25 class GURL; | 25 class GURL; |
| 26 | 26 |
| 27 namespace base { | |
| 28 class MessageLoop; | |
| 29 }; | |
| 30 | |
| 31 namespace sync_pb { | 27 namespace sync_pb { |
| 32 class TypedUrlSpecifics; | 28 class TypedUrlSpecifics; |
| 33 }; | 29 }; |
| 34 | 30 |
| 35 namespace history { | 31 namespace history { |
| 36 | 32 |
| 37 class HistoryBackend; | 33 class HistoryBackend; |
| 38 class TypedUrlSyncableServiceTest; | 34 class TypedUrlSyncableServiceTest; |
| 39 class URLRow; | 35 class URLRow; |
| 40 | 36 |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 236 |
| 241 ScopedObserver<history::HistoryBackend, history::HistoryBackendObserver> | 237 ScopedObserver<history::HistoryBackend, history::HistoryBackendObserver> |
| 242 history_backend_observer_; | 238 history_backend_observer_; |
| 243 | 239 |
| 244 DISALLOW_COPY_AND_ASSIGN(TypedUrlSyncableService); | 240 DISALLOW_COPY_AND_ASSIGN(TypedUrlSyncableService); |
| 245 }; | 241 }; |
| 246 | 242 |
| 247 } // namespace history | 243 } // namespace history |
| 248 | 244 |
| 249 #endif // COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_SYNCABLE_SERVICE_H_ | 245 #endif // COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_SYNCABLE_SERVICE_H_ |
| OLD | NEW |