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

Unified Diff: runtime/vm/flags.cc

Issue 8761011: Renaming type classes as discussed: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: runtime/vm/flags.cc
===================================================================
--- runtime/vm/flags.cc (revision 1948)
+++ runtime/vm/flags.cc (working copy)
@@ -18,14 +18,14 @@
class Flag {
public:
- enum Type {
+ enum FlagType {
kBoolean,
kInteger,
kString,
kNumFlagTypes
};
- Flag(const char* name, const char* comment, void* addr, Type type)
+ Flag(const char* name, const char* comment, void* addr, FlagType type)
: name_(name), comment_(comment), addr_(addr), type_(type) {
}
@@ -71,7 +71,7 @@
int* int_ptr_;
charp* charp_ptr_;
};
- Type type_;
+ FlagType type_;
};
« no previous file with comments | « runtime/vm/code_generator_ia32.cc ('k') | runtime/vm/object.h » ('j') | runtime/vm/object.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698