| 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> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/file_path.h" | 14 #include "base/file_path.h" |
| 15 #include "base/ref_counted.h" | 15 #include "base/ref_counted.h" |
| 16 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
| 17 #include "base/string16.h" | 17 #include "base/string16.h" |
| 18 #include "base/task.h" | 18 #include "base/task.h" |
| 19 #include "chrome/browser/favicon_service.h" | 19 #include "chrome/browser/favicon_service.h" |
| 20 #include "chrome/browser/history/history_types.h" | 20 #include "chrome/browser/history/history_types.h" |
| 21 #include "chrome/browser/search_engines/template_url_id.h" | 21 #include "chrome/browser/search_engines/template_url_id.h" |
| 22 #include "chrome/common/page_transition_types.h" | |
| 23 #include "chrome/common/ref_counted_util.h" | 22 #include "chrome/common/ref_counted_util.h" |
| 24 #include "content/browser/cancelable_request.h" | 23 #include "content/browser/cancelable_request.h" |
| 25 #include "content/common/notification_observer.h" | 24 #include "content/common/notification_observer.h" |
| 26 #include "content/common/notification_registrar.h" | 25 #include "content/common/notification_registrar.h" |
| 26 #include "content/common/page_transition_types.h" |
| 27 | 27 |
| 28 class BookmarkService; | 28 class BookmarkService; |
| 29 struct DownloadCreateInfo; | 29 struct DownloadCreateInfo; |
| 30 class FilePath; | 30 class FilePath; |
| 31 class GURL; | 31 class GURL; |
| 32 class HistoryURLProvider; | 32 class HistoryURLProvider; |
| 33 struct HistoryURLProviderParams; | 33 struct HistoryURLProviderParams; |
| 34 class InMemoryURLDatabase; | 34 class InMemoryURLDatabase; |
| 35 class MainPagesRequest; | 35 class MainPagesRequest; |
| 36 class PageUsageData; | 36 class PageUsageData; |
| (...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 866 BookmarkService* bookmark_service_; | 866 BookmarkService* bookmark_service_; |
| 867 bool no_db_; | 867 bool no_db_; |
| 868 | 868 |
| 869 // True if needs top site migration. | 869 // True if needs top site migration. |
| 870 bool needs_top_sites_migration_; | 870 bool needs_top_sites_migration_; |
| 871 | 871 |
| 872 DISALLOW_COPY_AND_ASSIGN(HistoryService); | 872 DISALLOW_COPY_AND_ASSIGN(HistoryService); |
| 873 }; | 873 }; |
| 874 | 874 |
| 875 #endif // CHROME_BROWSER_HISTORY_HISTORY_H_ | 875 #endif // CHROME_BROWSER_HISTORY_HISTORY_H_ |
| OLD | NEW |