| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "base/file_path.h" | 12 #include "base/file_path.h" |
| 13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 14 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
| 15 #include "chrome/browser/history/archived_database.h" | 15 #include "chrome/browser/history/archived_database.h" |
| 16 #include "chrome/browser/history/expire_history_backend.h" | 16 #include "chrome/browser/history/expire_history_backend.h" |
| 17 #include "chrome/browser/history/history_database.h" | 17 #include "chrome/browser/history/history_database.h" |
| 18 #include "chrome/browser/history/history_marshaling.h" | 18 #include "chrome/browser/history/history_marshaling.h" |
| 19 #include "chrome/browser/history/history_types.h" | 19 #include "chrome/browser/history/history_types.h" |
| 20 #include "chrome/browser/history/text_database_manager.h" | 20 #include "chrome/browser/history/text_database_manager.h" |
| 21 #include "chrome/browser/history/thumbnail_database.h" | 21 #include "chrome/browser/history/thumbnail_database.h" |
| 22 #include "chrome/browser/history/visit_tracker.h" | 22 #include "chrome/browser/history/visit_tracker.h" |
| 23 #include "chrome/browser/search_engines/template_url_id.h" | 23 #include "chrome/browser/search_engines/template_url_id.h" |
| 24 #include "chrome/common/mru_cache.h" | 24 #include "content/common/mru_cache.h" |
| 25 | 25 |
| 26 class BookmarkService; | 26 class BookmarkService; |
| 27 struct DownloadCreateInfo; | 27 struct DownloadCreateInfo; |
| 28 class TestingProfile; | 28 class TestingProfile; |
| 29 struct ThumbnailScore; | 29 struct ThumbnailScore; |
| 30 | 30 |
| 31 namespace history { | 31 namespace history { |
| 32 | 32 |
| 33 class CommitLaterTask; | 33 class CommitLaterTask; |
| 34 class HistoryPublisher; | 34 class HistoryPublisher; |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 // Publishes the history to all indexers which are registered to receive | 598 // Publishes the history to all indexers which are registered to receive |
| 599 // history data from us. Can be NULL if there are no listeners. | 599 // history data from us. Can be NULL if there are no listeners. |
| 600 scoped_ptr<HistoryPublisher> history_publisher_; | 600 scoped_ptr<HistoryPublisher> history_publisher_; |
| 601 | 601 |
| 602 DISALLOW_COPY_AND_ASSIGN(HistoryBackend); | 602 DISALLOW_COPY_AND_ASSIGN(HistoryBackend); |
| 603 }; | 603 }; |
| 604 | 604 |
| 605 } // namespace history | 605 } // namespace history |
| 606 | 606 |
| 607 #endif // CHROME_BROWSER_HISTORY_HISTORY_BACKEND_H_ | 607 #endif // CHROME_BROWSER_HISTORY_HISTORY_BACKEND_H_ |
| OLD | NEW |