| Index: Source/core/inspector/InspectorConsoleAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorConsoleAgent.cpp b/Source/core/inspector/InspectorConsoleAgent.cpp
|
| index 054b4ea9fb16a76f089a95557943b41acc27d0b5..f689172702f2ef0c7ff5b943dca5ec3d6b1d4871 100644
|
| --- a/Source/core/inspector/InspectorConsoleAgent.cpp
|
| +++ b/Source/core/inspector/InspectorConsoleAgent.cpp
|
| @@ -244,7 +244,7 @@ void InspectorConsoleAgent::sendConsoleMessageToFrontend(ConsoleMessage* console
|
| if (arguments && arguments->argumentCount()) {
|
| InjectedScript injectedScript = m_injectedScriptManager->injectedScriptFor(arguments->scriptState());
|
| if (!injectedScript.isEmpty()) {
|
| - RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::RemoteObject> > jsonArgs = TypeBuilder::Array<TypeBuilder::Runtime::RemoteObject>::create();
|
| + RefPtr<TypeBuilder::Array<TypeBuilder::Runtime::RemoteObject>> jsonArgs = TypeBuilder::Array<TypeBuilder::Runtime::RemoteObject>::create();
|
| if (consoleMessage->type() == TableMessageType && generatePreview && arguments->argumentCount()) {
|
| ScriptValue table = arguments->argumentAt(0);
|
| ScriptValue columns = arguments->argumentCount() > 1 ? arguments->argumentAt(1) : ScriptValue();
|
|
|