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

Unified Diff: dart/runtime/vm/json_stream.h

Issue 119673004: Version 1.1.0-dev.5.2 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 11 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
« no previous file with comments | « dart/runtime/vm/isolate.cc ('k') | dart/runtime/vm/json_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/vm/json_stream.h
===================================================================
--- dart/runtime/vm/json_stream.h (revision 31530)
+++ dart/runtime/vm/json_stream.h (working copy)
@@ -59,7 +59,7 @@
void PrintfValue(const char* format, ...) PRINTF_ATTRIBUTE(2, 3);
void PrintValue(const Object& o, bool ref = true);
void PrintValue(const Field& f, const Instance& instance, bool ref = true);
- void PrintValue(const SourceBreakpoint* bpt);
+ void PrintValue(SourceBreakpoint* bpt);
void PrintPropertyBool(const char* name, bool b);
void PrintProperty(const char* name, intptr_t i);
@@ -158,7 +158,7 @@
bool ref = true) const {
stream_->PrintValue(field, instance, ref);
}
- void AddValue(const SourceBreakpoint* bpt) const {
+ void AddValue(SourceBreakpoint* bpt) const {
stream_->PrintValue(bpt);
}
void AddValueF(const char* format, ...) const PRINTF_ATTRIBUTE(2, 3);
« no previous file with comments | « dart/runtime/vm/isolate.cc ('k') | dart/runtime/vm/json_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698