Index: third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp |
index 82b6cf1b07a0b9e14774d59f5779edf41f552ef0..ba26c811cb0df93f560a9a13aa1b71c605dc306c 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp |
+++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp |
@@ -447,7 +447,7 @@ PassOwnPtr<protocol::Value> InjectedScript::makeCall(V8FunctionCall& function) |
if (!hadException) { |
result = toProtocolValue(function.context(), resultValue); |
if (!result) |
- result = protocol::StringValue::create("Object has too long reference chain(must not be longer than " + String16::number(protocol::Value::maxDepth) + ")"); |
+ result = protocol::StringValue::create("Object has too long reference chain"); |
} else { |
result = protocol::StringValue::create("Exception while making a call."); |
} |
@@ -501,7 +501,7 @@ PassOwnPtr<protocol::Value> InjectedScript::makeCallWithExceptionDetails(V8Funct |
} else { |
result = toProtocolValue(function.context(), resultValue); |
if (!result) |
- result = protocol::StringValue::create("Object has too long reference chain(must not be longer than " + String16::number(protocol::Value::maxDepth) + ")"); |
+ result = protocol::StringValue::create("Object has too long reference chain"); |
} |
return result.release(); |
} |