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

Side by Side Diff: runtime/vm/class_table.h

Issue 14367034: - Remove redundant include of platform/globals.h. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_CLASS_TABLE_H_ 5 #ifndef VM_CLASS_TABLE_H_
6 #define VM_CLASS_TABLE_H_ 6 #define VM_CLASS_TABLE_H_
7 7
8 #include "platform/assert.h" 8 #include "platform/assert.h"
9 #include "platform/globals.h"
10 #include "vm/globals.h" 9 #include "vm/globals.h"
11 10
12 namespace dart { 11 namespace dart {
13 12
14 class Class; 13 class Class;
15 class ObjectPointerVisitor; 14 class ObjectPointerVisitor;
16 class RawClass; 15 class RawClass;
17 16
18 class ClassTable { 17 class ClassTable {
19 public: 18 public:
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 intptr_t capacity_; 53 intptr_t capacity_;
55 54
56 RawClass** table_; 55 RawClass** table_;
57 56
58 DISALLOW_COPY_AND_ASSIGN(ClassTable); 57 DISALLOW_COPY_AND_ASSIGN(ClassTable);
59 }; 58 };
60 59
61 } // namespace dart 60 } // namespace dart
62 61
63 #endif // VM_CLASS_TABLE_H_ 62 #endif // VM_CLASS_TABLE_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