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

Side by Side Diff: tools/gn/parser.h

Issue 1549203002: Switch to standard integer types in tools/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « tools/gn/parse_tree_unittest.cc ('k') | tools/gn/path_output_unittest.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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 TOOLS_GN_PARSER_H_ 5 #ifndef TOOLS_GN_PARSER_H_
6 #define TOOLS_GN_PARSER_H_ 6 #define TOOLS_GN_PARSER_H_
7 7
8 #include <stddef.h>
9
8 #include <map> 10 #include <map>
9 #include <vector> 11 #include <vector>
10 12
11 #include "base/gtest_prod_util.h" 13 #include "base/gtest_prod_util.h"
12 #include "base/macros.h" 14 #include "base/macros.h"
13 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
14 #include "tools/gn/err.h" 16 #include "tools/gn/err.h"
15 #include "tools/gn/parse_tree.h" 17 #include "tools/gn/parse_tree.h"
16 18
17 class Parser; 19 class Parser;
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 FRIEND_TEST_ALL_PREFIXES(Parser, Expression); 125 FRIEND_TEST_ALL_PREFIXES(Parser, Expression);
124 FRIEND_TEST_ALL_PREFIXES(Parser, FunctionCall); 126 FRIEND_TEST_ALL_PREFIXES(Parser, FunctionCall);
125 FRIEND_TEST_ALL_PREFIXES(Parser, List); 127 FRIEND_TEST_ALL_PREFIXES(Parser, List);
126 FRIEND_TEST_ALL_PREFIXES(Parser, ParenExpression); 128 FRIEND_TEST_ALL_PREFIXES(Parser, ParenExpression);
127 FRIEND_TEST_ALL_PREFIXES(Parser, UnaryOp); 129 FRIEND_TEST_ALL_PREFIXES(Parser, UnaryOp);
128 130
129 DISALLOW_COPY_AND_ASSIGN(Parser); 131 DISALLOW_COPY_AND_ASSIGN(Parser);
130 }; 132 };
131 133
132 #endif // TOOLS_GN_PARSER_H_ 134 #endif // TOOLS_GN_PARSER_H_
OLDNEW
« no previous file with comments | « tools/gn/parse_tree_unittest.cc ('k') | tools/gn/path_output_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698