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

Side by Side Diff: components/query_parser/query_parser.h

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 4 years, 12 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
« no previous file with comments | « components/proxy_config/proxy_prefs.cc ('k') | components/query_parser/query_parser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_QUERY_PARSER_QUERY_PARSER_H_ 5 #ifndef COMPONENTS_QUERY_PARSER_QUERY_PARSER_H_
6 #define COMPONENTS_QUERY_PARSER_QUERY_PARSER_H_ 6 #define COMPONENTS_QUERY_PARSER_QUERY_PARSER_H_
7 7
8 #include <stddef.h>
9
8 #include <vector> 10 #include <vector>
9 11
10 #include "base/basictypes.h" 12 #include "base/macros.h"
11 #include "base/strings/string16.h" 13 #include "base/strings/string16.h"
12 #include "components/query_parser/snippet.h" 14 #include "components/query_parser/snippet.h"
13 15
14 namespace query_parser { 16 namespace query_parser {
15 17
16 class QueryNodeList; 18 class QueryNodeList;
17 19
18 // Used by HasMatchIn. 20 // Used by HasMatchIn.
19 struct QueryWord { 21 struct QueryWord {
20 // The work to match against. 22 // The work to match against.
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 bool ParseQueryImpl(const base::string16& query, 133 bool ParseQueryImpl(const base::string16& query,
132 MatchingAlgorithm matching_algorithm, 134 MatchingAlgorithm matching_algorithm,
133 QueryNodeList* root); 135 QueryNodeList* root);
134 136
135 DISALLOW_COPY_AND_ASSIGN(QueryParser); 137 DISALLOW_COPY_AND_ASSIGN(QueryParser);
136 }; 138 };
137 139
138 } // namespace query_parser 140 } // namespace query_parser
139 141
140 #endif // COMPONENTS_QUERY_PARSER_QUERY_PARSER_H_ 142 #endif // COMPONENTS_QUERY_PARSER_QUERY_PARSER_H_
OLDNEW
« no previous file with comments | « components/proxy_config/proxy_prefs.cc ('k') | components/query_parser/query_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698