| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_GLUE_TYPED_URL_DATA_TYPE_CONTROLLER_H__ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_TYPED_URL_DATA_TYPE_CONTROLLER_H__ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_TYPED_URL_DATA_TYPE_CONTROLLER_H__ | 6 #define CHROME_BROWSER_SYNC_GLUE_TYPED_URL_DATA_TYPE_CONTROLLER_H__ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/prefs/public/pref_change_registrar.h" | 12 #include "base/prefs/pref_change_registrar.h" |
| 13 #include "chrome/browser/common/cancelable_request.h" | 13 #include "chrome/browser/common/cancelable_request.h" |
| 14 #include "chrome/browser/sync/glue/non_frontend_data_type_controller.h" | 14 #include "chrome/browser/sync/glue/non_frontend_data_type_controller.h" |
| 15 | 15 |
| 16 class HistoryService; | 16 class HistoryService; |
| 17 | 17 |
| 18 namespace history { | 18 namespace history { |
| 19 class HistoryBackend; | 19 class HistoryBackend; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace browser_sync { | 22 namespace browser_sync { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 // Helper object to make sure we don't leave tasks running on the history | 58 // Helper object to make sure we don't leave tasks running on the history |
| 59 // thread. | 59 // thread. |
| 60 CancelableRequestConsumerT<int, 0> cancelable_consumer_; | 60 CancelableRequestConsumerT<int, 0> cancelable_consumer_; |
| 61 | 61 |
| 62 DISALLOW_COPY_AND_ASSIGN(TypedUrlDataTypeController); | 62 DISALLOW_COPY_AND_ASSIGN(TypedUrlDataTypeController); |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace browser_sync | 65 } // namespace browser_sync |
| 66 | 66 |
| 67 #endif // CHROME_BROWSER_SYNC_GLUE_TYPED_URL_DATA_TYPE_CONTROLLER_H__ | 67 #endif // CHROME_BROWSER_SYNC_GLUE_TYPED_URL_DATA_TYPE_CONTROLLER_H__ |
| OLD | NEW |