| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_BOOKMARKS_BOOKMARK_INDEX_H_ | 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_INDEX_H_ |
| 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_INDEX_H_ | 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_INDEX_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <string> |
| 11 #include <vector> | 12 #include <vector> |
| 12 | 13 |
| 13 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 14 | 15 |
| 15 class BookmarkNode; | 16 class BookmarkNode; |
| 16 class QueryNode; | 17 class QueryNode; |
| 17 class QueryParser; | 18 class QueryParser; |
| 18 | 19 |
| 19 namespace bookmark_utils { | 20 namespace bookmark_utils { |
| 20 struct TitleMatch; | 21 struct TitleMatch; |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 | 120 |
| 120 // Removes |node| from |index_|. | 121 // Removes |node| from |index_|. |
| 121 void UnregisterNode(const std::wstring& term, BookmarkNode* node); | 122 void UnregisterNode(const std::wstring& term, BookmarkNode* node); |
| 122 | 123 |
| 123 Index index_; | 124 Index index_; |
| 124 | 125 |
| 125 DISALLOW_COPY_AND_ASSIGN(BookmarkIndex); | 126 DISALLOW_COPY_AND_ASSIGN(BookmarkIndex); |
| 126 }; | 127 }; |
| 127 | 128 |
| 128 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_INDEX_H_ | 129 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_INDEX_H_ |
| OLD | NEW |