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

Unified Diff: runtime/platform/json.h

Issue 23439002: JSON string decoding for VM debugger (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: runtime/platform/json.h
===================================================================
--- runtime/platform/json.h (revision 26654)
+++ runtime/platform/json.h (working copy)
@@ -88,7 +88,8 @@
int ValueLen() const {
return (Type() != kNone) ? scanner_.TokenLen() : 0;
}
- void GetValueChars(char* buf, intptr_t buflen) const;
+ void GetRawValueChars(char* buf, intptr_t buflen) const;
+ void GetDecodedValueChars(char* buf, intptr_t buflen) const;
bool IsStringLiteral(const char* literal) const {
return scanner_.IsStringLiteral(literal);
}
« no previous file with comments | « runtime/bin/dbg_message.cc ('k') | runtime/platform/json.cc » ('j') | runtime/platform/json.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698