Index: src/string-stream.h |
diff --git a/src/string-stream.h b/src/string-stream.h |
index 2367994116e9fc582cf8eef577514c0f24bd8166..255a2c30bae9df8413300ec126dc62601344ade7 100644 |
--- a/src/string-stream.h |
+++ b/src/string-stream.h |
@@ -148,7 +148,7 @@ class StringStream { |
void OutputToFile(FILE* out); |
void OutputToStdOut() { OutputToFile(stdout); } |
void Log(); |
- Handle<String> ToString(); |
+ Handle<String> ToString(Isolate* isolate); |
SmartArrayPointer<const char> ToCString() const; |
int length() const { return length_; } |
@@ -169,10 +169,10 @@ class StringStream { |
} |
// Mentioned object cache support. |
- void PrintMentionedObjectCache(); |
- static void ClearMentionedObjectCache(); |
+ void PrintMentionedObjectCache(Isolate* isolate); |
+ static void ClearMentionedObjectCache(Isolate* isolate); |
#ifdef DEBUG |
- static bool IsMentionedObjectCacheClear(); |
+ static bool IsMentionedObjectCacheClear(Isolate* isolate); |
#endif |