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

Unified Diff: Source/WebCore/inspector/InspectorInstrumentation.cpp

Issue 8806015: Changes to support a second VM. (Closed) Base URL: svn://svn.chromium.org/dash/experimental/chrome/src/webkit-full
Patch Set: . Created 9 years 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: Source/WebCore/inspector/InspectorInstrumentation.cpp
diff --git a/Source/WebCore/inspector/InspectorInstrumentation.cpp b/Source/WebCore/inspector/InspectorInstrumentation.cpp
index bd2b9e50e49d48502a0976edf2af8921012fcb7c..881b64af4ced5b63aa17f65e863053ddef707af3 100644
--- a/Source/WebCore/inspector/InspectorInstrumentation.cpp
+++ b/Source/WebCore/inspector/InspectorInstrumentation.cpp
@@ -724,7 +724,7 @@ void InspectorInstrumentation::consoleTimeStampImpl(InstrumentingAgents* instrum
{
if (InspectorTimelineAgent* timelineAgent = instrumentingAgents->inspectorTimelineAgent()) {
String message;
- arguments->getFirstArgumentAsString(message);
+ arguments->argumentToString(0, message);
timelineAgent->didTimeStamp(message);
}
}

Powered by Google App Engine
This is Rietveld 408576698