| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/gfx/rect.h" | 13 #include "base/gfx/rect.h" |
| 14 #include "base/lock.h" | 14 #include "base/lock.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/task.h" | 17 #include "base/task.h" |
| 18 #include "base/time.h" | |
| 19 #include "chrome/browser/cancelable_request.h" | 18 #include "chrome/browser/cancelable_request.h" |
| 20 #include "chrome/browser/history/history_notifications.h" | 19 #include "chrome/browser/history/history_notifications.h" |
| 21 #include "chrome/browser/history/history_types.h" | 20 #include "chrome/browser/history/history_types.h" |
| 22 #include "chrome/browser/search_engines/template_url.h" | 21 #include "chrome/browser/search_engines/template_url.h" |
| 23 #include "chrome/common/notification_observer.h" | 22 #include "chrome/common/notification_observer.h" |
| 24 #include "chrome/common/page_transition_types.h" | 23 #include "chrome/common/page_transition_types.h" |
| 25 #include "chrome/common/ref_counted_util.h" | 24 #include "chrome/common/ref_counted_util.h" |
| 26 | 25 |
| 27 class BookmarkService; | 26 class BookmarkService; |
| 28 class ChromeThread; | 27 class ChromeThread; |
| 29 struct DownloadCreateInfo; | 28 struct DownloadCreateInfo; |
| 30 class FilePath; | 29 class FilePath; |
| 31 class GURL; | 30 class GURL; |
| 32 class HistoryURLProvider; | 31 class HistoryURLProvider; |
| 33 struct HistoryURLProviderParams; | 32 struct HistoryURLProviderParams; |
| 34 class InMemoryURLDatabase; | 33 class InMemoryURLDatabase; |
| 35 class MainPagesRequest; | 34 class MainPagesRequest; |
| 36 class PageUsageData; | 35 class PageUsageData; |
| 37 class PageUsageRequest; | 36 class PageUsageRequest; |
| 38 class Profile; | 37 class Profile; |
| 39 class SkBitmap; | 38 class SkBitmap; |
| 40 struct ThumbnailScore; | 39 struct ThumbnailScore; |
| 41 | 40 |
| 41 namespace base { |
| 42 class Time; |
| 43 } |
| 44 |
| 42 namespace history { | 45 namespace history { |
| 43 | 46 |
| 44 class InMemoryHistoryBackend; | 47 class InMemoryHistoryBackend; |
| 45 class HistoryBackend; | 48 class HistoryBackend; |
| 46 class HistoryDatabase; | 49 class HistoryDatabase; |
| 47 class HistoryQueryTest; | 50 class HistoryQueryTest; |
| 48 class URLDatabase; | 51 class URLDatabase; |
| 49 | 52 |
| 50 } // namespace history | 53 } // namespace history |
| 51 | 54 |
| (...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 Profile* profile_; | 760 Profile* profile_; |
| 758 | 761 |
| 759 // Has the backend finished loading? The backend is loaded once Init has | 762 // Has the backend finished loading? The backend is loaded once Init has |
| 760 // completed. | 763 // completed. |
| 761 bool backend_loaded_; | 764 bool backend_loaded_; |
| 762 | 765 |
| 763 DISALLOW_EVIL_CONSTRUCTORS(HistoryService); | 766 DISALLOW_EVIL_CONSTRUCTORS(HistoryService); |
| 764 }; | 767 }; |
| 765 | 768 |
| 766 #endif // CHROME_BROWSER_HISTORY_HISTORY_H__ | 769 #endif // CHROME_BROWSER_HISTORY_HISTORY_H__ |
| OLD | NEW |