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 // Contains the history backend wrapper around the in-memory URL database. This | 5 // Contains the history backend wrapper around the in-memory URL database. This |
6 // object maintains an in-memory cache of the subset of history required to do | 6 // object maintains an in-memory cache of the subset of history required to do |
7 // in-line autocomplete. | 7 // in-line autocomplete. |
8 // | 8 // |
9 // It is created on the history thread and passed to the main thread where | 9 // It is created on the history thread and passed to the main thread where |
10 // operations can be completed synchronously. It listens for notifications | 10 // operations can be completed synchronously. It listens for notifications |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 // so that it can deal directly with this object, rather than the DB. | 63 // so that it can deal directly with this object, rather than the DB. |
64 InMemoryDatabase* db() const { | 64 InMemoryDatabase* db() const { |
65 return db_.get(); | 65 return db_.get(); |
66 } | 66 } |
67 | 67 |
68 // Notification callback. | 68 // Notification callback. |
69 virtual void Observe(int type, | 69 virtual void Observe(int type, |
70 const content::NotificationSource& source, | 70 const content::NotificationSource& source, |
71 const content::NotificationDetails& details); | 71 const content::NotificationDetails& details); |
72 | 72 |
| 73 // Return the quick history index. |
| 74 history::InMemoryURLIndex* InMemoryIndex() const { return index_.get(); } |
| 75 |
73 private: | 76 private: |
74 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, DeleteAll); | 77 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, DeleteAll); |
75 | 78 |
76 // Handler for NOTIFY_HISTORY_TYPED_URLS_MODIFIED. | 79 // Handler for NOTIFY_HISTORY_TYPED_URLS_MODIFIED. |
77 void OnTypedURLsModified(const URLsModifiedDetails& details); | 80 void OnTypedURLsModified(const URLsModifiedDetails& details); |
78 | 81 |
79 // Handler for NOTIFY_HISTORY_URLS_DELETED. | 82 // Handler for NOTIFY_HISTORY_URLS_DELETED. |
80 void OnURLsDeleted(const URLsDeletedDetails& details); | 83 void OnURLsDeleted(const URLsDeletedDetails& details); |
81 | 84 |
82 // Handler for HISTORY_KEYWORD_SEARCH_TERM_UPDATED. | 85 // Handler for HISTORY_KEYWORD_SEARCH_TERM_UPDATED. |
83 void OnKeywordSearchTermUpdated(const KeywordSearchTermDetails& details); | 86 void OnKeywordSearchTermUpdated(const KeywordSearchTermDetails& details); |
84 | 87 |
85 // Returns true if there is a keyword associated with the specified url. | 88 // Returns true if there is a keyword associated with the specified url. |
86 bool HasKeyword(const GURL& url); | 89 bool HasKeyword(const GURL& url); |
87 | 90 |
88 content::NotificationRegistrar registrar_; | 91 content::NotificationRegistrar registrar_; |
89 | 92 |
90 scoped_ptr<InMemoryDatabase> db_; | 93 scoped_ptr<InMemoryDatabase> db_; |
91 | 94 |
92 // The profile that this object is attached. May be NULL before | 95 // The profile that this object is attached. May be NULL before |
93 // initialization. | 96 // initialization. |
94 Profile* profile_; | 97 Profile* profile_; |
95 | 98 |
| 99 // The index used for quick history lookups. |
| 100 scoped_ptr<history::InMemoryURLIndex> index_; |
| 101 |
96 DISALLOW_COPY_AND_ASSIGN(InMemoryHistoryBackend); | 102 DISALLOW_COPY_AND_ASSIGN(InMemoryHistoryBackend); |
97 }; | 103 }; |
98 | 104 |
99 } // namespace history | 105 } // namespace history |
100 | 106 |
101 #endif // CHROME_BROWSER_HISTORY_IN_MEMORY_HISTORY_BACKEND_H_ | 107 #endif // CHROME_BROWSER_HISTORY_IN_MEMORY_HISTORY_BACKEND_H_ |
OLD | NEW |