| 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 "sync/api/sync_change.h" | 18 #include "components/sync/api/sync_change.h" |
| 19 #include "sync/api/sync_data.h" | 19 #include "components/sync/api/sync_data.h" |
| 20 #include "sync/api/sync_error.h" | 20 #include "components/sync/api/sync_error.h" |
| 21 #include "sync/api/sync_error_factory.h" | 21 #include "components/sync/api/sync_error_factory.h" |
| 22 #include "sync/api/syncable_service.h" | 22 #include "components/sync/api/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 { | 27 namespace base { |
| 28 class MessageLoop; | 28 class MessageLoop; |
| 29 }; | 29 }; |
| 30 | 30 |
| 31 namespace sync_pb { | 31 namespace sync_pb { |
| 32 class TypedUrlSpecifics; | 32 class TypedUrlSpecifics; |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 240 |
| 241 ScopedObserver<history::HistoryBackend, history::HistoryBackendObserver> | 241 ScopedObserver<history::HistoryBackend, history::HistoryBackendObserver> |
| 242 history_backend_observer_; | 242 history_backend_observer_; |
| 243 | 243 |
| 244 DISALLOW_COPY_AND_ASSIGN(TypedUrlSyncableService); | 244 DISALLOW_COPY_AND_ASSIGN(TypedUrlSyncableService); |
| 245 }; | 245 }; |
| 246 | 246 |
| 247 } // namespace history | 247 } // namespace history |
| 248 | 248 |
| 249 #endif // COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_SYNCABLE_SERVICE_H_ | 249 #endif // COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_SYNCABLE_SERVICE_H_ |
| OLD | NEW |