| 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 COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_SERVICE_H_ | 5 #ifndef COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_SERVICE_H_ |
| 6 #define COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_SERVICE_H_ | 6 #define COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_SERVICE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "base/threading/thread_checker.h" | 27 #include "base/threading/thread_checker.h" |
| 28 #include "base/time/time.h" | 28 #include "base/time/time.h" |
| 29 #include "build/build_config.h" | 29 #include "build/build_config.h" |
| 30 #include "components/favicon_base/favicon_callback.h" | 30 #include "components/favicon_base/favicon_callback.h" |
| 31 #include "components/favicon_base/favicon_usage_data.h" | 31 #include "components/favicon_base/favicon_usage_data.h" |
| 32 #include "components/history/core/browser/delete_directive_handler.h" | 32 #include "components/history/core/browser/delete_directive_handler.h" |
| 33 #include "components/history/core/browser/history_types.h" | 33 #include "components/history/core/browser/history_types.h" |
| 34 #include "components/history/core/browser/keyword_id.h" | 34 #include "components/history/core/browser/keyword_id.h" |
| 35 #include "components/history/core/browser/typed_url_syncable_service.h" | 35 #include "components/history/core/browser/typed_url_syncable_service.h" |
| 36 #include "components/keyed_service/core/keyed_service.h" | 36 #include "components/keyed_service/core/keyed_service.h" |
| 37 #include "components/sync/api/syncable_service.h" | 37 #include "components/sync/model/syncable_service.h" |
| 38 #include "sql/init_status.h" | 38 #include "sql/init_status.h" |
| 39 #include "ui/base/page_transition_types.h" | 39 #include "ui/base/page_transition_types.h" |
| 40 | 40 |
| 41 class GURL; | 41 class GURL; |
| 42 class HistoryQuickProviderTest; | 42 class HistoryQuickProviderTest; |
| 43 class HistoryURLProvider; | 43 class HistoryURLProvider; |
| 44 class HistoryURLProviderTest; | 44 class HistoryURLProviderTest; |
| 45 class InMemoryURLIndexTest; | 45 class InMemoryURLIndexTest; |
| 46 class SkBitmap; | 46 class SkBitmap; |
| 47 class SyncBookmarkDataTypeControllerTest; | 47 class SyncBookmarkDataTypeControllerTest; |
| (...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 | 831 |
| 832 // All vended weak pointers are invalidated in Cleanup(). | 832 // All vended weak pointers are invalidated in Cleanup(). |
| 833 base::WeakPtrFactory<HistoryService> weak_ptr_factory_; | 833 base::WeakPtrFactory<HistoryService> weak_ptr_factory_; |
| 834 | 834 |
| 835 DISALLOW_COPY_AND_ASSIGN(HistoryService); | 835 DISALLOW_COPY_AND_ASSIGN(HistoryService); |
| 836 }; | 836 }; |
| 837 | 837 |
| 838 } // namespace history | 838 } // namespace history |
| 839 | 839 |
| 840 #endif // COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_SERVICE_H_ | 840 #endif // COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_SERVICE_H_ |
| OLD | NEW |