Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: chrome/browser/bookmarks/bookmark_index.h

Issue 113573: Fix Linux Bustage from new CL where it is missing string import... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698