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

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

Issue 1280123005: tools/gn: Remove includes of basictypes.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
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 TOOLS_GN_PARSE_TREE_H_ 5 #ifndef TOOLS_GN_PARSE_TREE_H_
6 #define TOOLS_GN_PARSE_TREE_H_ 6 #define TOOLS_GN_PARSE_TREE_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/macros.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "tools/gn/err.h" 12 #include "tools/gn/err.h"
13 #include "tools/gn/token.h" 13 #include "tools/gn/token.h"
14 #include "tools/gn/value.h" 14 #include "tools/gn/value.h"
15 15
16 class AccessorNode; 16 class AccessorNode;
17 class BinaryOpNode; 17 class BinaryOpNode;
18 class BlockCommentNode; 18 class BlockCommentNode;
19 class BlockNode; 19 class BlockNode;
20 class ConditionNode; 20 class ConditionNode;
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 const Token& value() const { return value_; } 510 const Token& value() const { return value_; }
511 void set_value(const Token& t) { value_ = t; } 511 void set_value(const Token& t) { value_ = t; }
512 512
513 private: 513 private:
514 Token value_; 514 Token value_;
515 515
516 DISALLOW_COPY_AND_ASSIGN(EndNode); 516 DISALLOW_COPY_AND_ASSIGN(EndNode);
517 }; 517 };
518 518
519 #endif // TOOLS_GN_PARSE_TREE_H_ 519 #endif // TOOLS_GN_PARSE_TREE_H_
OLDNEW
« tools/gn/args.h ('K') | « tools/gn/ninja_writer.h ('k') | tools/gn/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698