| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_HISTORY_HISTORY_H_ | 5 #ifndef CHROME_BROWSER_HISTORY_HISTORY_H_ |
| 6 #define CHROME_BROWSER_HISTORY_HISTORY_H_ | 6 #define CHROME_BROWSER_HISTORY_HISTORY_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "content/public/browser/notification_registrar.h" | 25 #include "content/public/browser/notification_registrar.h" |
| 26 #include "content/public/common/page_transition_types.h" | 26 #include "content/public/common/page_transition_types.h" |
| 27 #include "sql/init_status.h" | 27 #include "sql/init_status.h" |
| 28 | 28 |
| 29 class BookmarkService; | 29 class BookmarkService; |
| 30 struct DownloadPersistentStoreInfo; | 30 struct DownloadPersistentStoreInfo; |
| 31 class FilePath; | 31 class FilePath; |
| 32 class GURL; | 32 class GURL; |
| 33 class HistoryURLProvider; | 33 class HistoryURLProvider; |
| 34 struct HistoryURLProviderParams; | 34 struct HistoryURLProviderParams; |
| 35 class InMemoryURLDatabase; | |
| 36 class MainPagesRequest; | |
| 37 class PageUsageData; | 35 class PageUsageData; |
| 38 class PageUsageRequest; | 36 class PageUsageRequest; |
| 39 class Profile; | 37 class Profile; |
| 40 class SkBitmap; | |
| 41 struct ThumbnailScore; | |
| 42 | 38 |
| 43 namespace base { | 39 namespace base { |
| 44 class Thread; | 40 class Thread; |
| 45 class Time; | 41 class Time; |
| 46 } | 42 } |
| 47 | 43 |
| 48 namespace browser_sync { | |
| 49 class HistoryModelWorker; | |
| 50 class TypedUrlDataTypeController; | |
| 51 } | |
| 52 | |
| 53 namespace gfx { | |
| 54 class Image; | |
| 55 } | |
| 56 | |
| 57 namespace history { | 44 namespace history { |
| 58 class InMemoryHistoryBackend; | 45 class InMemoryHistoryBackend; |
| 59 class InMemoryURLIndex; | 46 class InMemoryURLIndex; |
| 60 class HistoryAddPageArgs; | 47 class HistoryAddPageArgs; |
| 61 class HistoryBackend; | 48 class HistoryBackend; |
| 62 class HistoryDatabase; | 49 class HistoryDatabase; |
| 63 struct HistoryDetails; | 50 struct HistoryDetails; |
| 64 class HistoryQueryTest; | 51 class HistoryQueryTest; |
| 65 class URLDatabase; | 52 class URLDatabase; |
| 66 } // namespace history | 53 } // namespace history |
| (...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 870 BookmarkService* bookmark_service_; | 857 BookmarkService* bookmark_service_; |
| 871 bool no_db_; | 858 bool no_db_; |
| 872 | 859 |
| 873 // True if needs top site migration. | 860 // True if needs top site migration. |
| 874 bool needs_top_sites_migration_; | 861 bool needs_top_sites_migration_; |
| 875 | 862 |
| 876 DISALLOW_COPY_AND_ASSIGN(HistoryService); | 863 DISALLOW_COPY_AND_ASSIGN(HistoryService); |
| 877 }; | 864 }; |
| 878 | 865 |
| 879 #endif // CHROME_BROWSER_HISTORY_HISTORY_H_ | 866 #endif // CHROME_BROWSER_HISTORY_HISTORY_H_ |
| OLD | NEW |