| 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_BACKEND_H_ | 5 #ifndef CHROME_BROWSER_HISTORY_HISTORY_BACKEND_H_ |
| 6 #define CHROME_BROWSER_HISTORY_HISTORY_BACKEND_H_ | 6 #define CHROME_BROWSER_HISTORY_HISTORY_BACKEND_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| 11 | 11 |
| 12 #include "app/sql/init_status.h" | |
| 13 #include "base/file_path.h" | 12 #include "base/file_path.h" |
| 14 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 15 #include "base/memory/mru_cache.h" | 14 #include "base/memory/mru_cache.h" |
| 16 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 17 #include "chrome/browser/history/archived_database.h" | 16 #include "chrome/browser/history/archived_database.h" |
| 18 #include "chrome/browser/history/expire_history_backend.h" | 17 #include "chrome/browser/history/expire_history_backend.h" |
| 19 #include "chrome/browser/history/history_database.h" | 18 #include "chrome/browser/history/history_database.h" |
| 20 #include "chrome/browser/history/history_marshaling.h" | 19 #include "chrome/browser/history/history_marshaling.h" |
| 21 #include "chrome/browser/history/history_types.h" | 20 #include "chrome/browser/history/history_types.h" |
| 22 #include "chrome/browser/history/text_database_manager.h" | 21 #include "chrome/browser/history/text_database_manager.h" |
| 23 #include "chrome/browser/history/thumbnail_database.h" | 22 #include "chrome/browser/history/thumbnail_database.h" |
| 24 #include "chrome/browser/history/visit_tracker.h" | 23 #include "chrome/browser/history/visit_tracker.h" |
| 25 #include "chrome/browser/search_engines/template_url_id.h" | 24 #include "chrome/browser/search_engines/template_url_id.h" |
| 25 #include "sql/init_status.h" |
| 26 | 26 |
| 27 class BookmarkService; | 27 class BookmarkService; |
| 28 struct DownloadHistoryInfo; | 28 struct DownloadHistoryInfo; |
| 29 class TestingProfile; | 29 class TestingProfile; |
| 30 struct ThumbnailScore; | 30 struct ThumbnailScore; |
| 31 | 31 |
| 32 namespace history { | 32 namespace history { |
| 33 | 33 |
| 34 class CommitLaterTask; | 34 class CommitLaterTask; |
| 35 class HistoryPublisher; | 35 class HistoryPublisher; |
| (...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 // Publishes the history to all indexers which are registered to receive | 603 // Publishes the history to all indexers which are registered to receive |
| 604 // history data from us. Can be NULL if there are no listeners. | 604 // history data from us. Can be NULL if there are no listeners. |
| 605 scoped_ptr<HistoryPublisher> history_publisher_; | 605 scoped_ptr<HistoryPublisher> history_publisher_; |
| 606 | 606 |
| 607 DISALLOW_COPY_AND_ASSIGN(HistoryBackend); | 607 DISALLOW_COPY_AND_ASSIGN(HistoryBackend); |
| 608 }; | 608 }; |
| 609 | 609 |
| 610 } // namespace history | 610 } // namespace history |
| 611 | 611 |
| 612 #endif // CHROME_BROWSER_HISTORY_HISTORY_BACKEND_H_ | 612 #endif // CHROME_BROWSER_HISTORY_HISTORY_BACKEND_H_ |
| OLD | NEW |