| 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); | 
| } | 
|  |