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

Side by Side Diff: components/bookmarks/core/browser/bookmark_index.h

Issue 277893002: Cleaned up includes and unused declarations in the bookmarks component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_INDEX_H_ 5 #ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_INDEX_H_
6 #define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_INDEX_H_ 6 #define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_INDEX_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string>
10 #include <vector> 11 #include <vector>
11 12
12 #include "base/basictypes.h" 13 #include "base/basictypes.h"
13 #include "base/strings/string16.h" 14 #include "base/strings/string16.h"
14 #include "components/query_parser/query_parser.h" 15 #include "components/query_parser/query_parser.h"
15 16
16 class BookmarkClient; 17 class BookmarkClient;
17 class BookmarkNode; 18 class BookmarkNode;
18 struct BookmarkMatch; 19 struct BookmarkMatch;
19 20
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 // Languages used to help parse IDNs in URLs for the bookmark index. 111 // Languages used to help parse IDNs in URLs for the bookmark index.
111 const std::string languages_; 112 const std::string languages_;
112 113
113 // True if URLs are stored in the index as well as bookmark titles. 114 // True if URLs are stored in the index as well as bookmark titles.
114 const bool index_urls_; 115 const bool index_urls_;
115 116
116 DISALLOW_COPY_AND_ASSIGN(BookmarkIndex); 117 DISALLOW_COPY_AND_ASSIGN(BookmarkIndex);
117 }; 118 };
118 119
119 #endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_INDEX_H_ 120 #endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_INDEX_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698