| 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" | 18 #include "base/time.h" |
| 19 #include "chrome/browser/cancelable_request.h" | 19 #include "chrome/browser/cancelable_request.h" |
| 20 #include "chrome/browser/chrome_thread.h" | 20 #include "chrome/browser/chrome_thread.h" |
| 21 #include "chrome/browser/history/history_notifications.h" | 21 #include "chrome/browser/history/history_notifications.h" |
| 22 #include "chrome/browser/history/history_types.h" | 22 #include "chrome/browser/history/history_types.h" |
| 23 #include "chrome/browser/template_url.h" | 23 #include "chrome/browser/search_engines/template_url.h" |
| 24 #include "chrome/common/notification_service.h" | 24 #include "chrome/common/notification_service.h" |
| 25 #include "chrome/common/page_transition_types.h" | 25 #include "chrome/common/page_transition_types.h" |
| 26 #include "chrome/common/ref_counted_util.h" | 26 #include "chrome/common/ref_counted_util.h" |
| 27 | 27 |
| 28 class BookmarkService; | 28 class BookmarkService; |
| 29 struct DownloadCreateInfo; | 29 struct DownloadCreateInfo; |
| 30 class GURL; | 30 class GURL; |
| 31 class HistoryURLProvider; | 31 class HistoryURLProvider; |
| 32 struct HistoryURLProviderParams; | 32 struct HistoryURLProviderParams; |
| 33 class InMemoryURLDatabase; | 33 class InMemoryURLDatabase; |
| (...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 Profile* profile_; | 757 Profile* profile_; |
| 758 | 758 |
| 759 // Has the backend finished loading? The backend is loaded once Init has | 759 // Has the backend finished loading? The backend is loaded once Init has |
| 760 // completed. | 760 // completed. |
| 761 bool backend_loaded_; | 761 bool backend_loaded_; |
| 762 | 762 |
| 763 DISALLOW_EVIL_CONSTRUCTORS(HistoryService); | 763 DISALLOW_EVIL_CONSTRUCTORS(HistoryService); |
| 764 }; | 764 }; |
| 765 | 765 |
| 766 #endif // CHROME_BROWSER_HISTORY_HISTORY_H__ | 766 #endif // CHROME_BROWSER_HISTORY_HISTORY_H__ |
| OLD | NEW |