| Index: third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
|
| index 732cf7ff99f8b422a35bfd72d6fadb7655218e71..808bde42de5178f8e8bc19b2ca57b10f75e8cb5e 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorResourceAgent.cpp
|
| @@ -720,12 +720,12 @@ void InspectorResourceAgent::willSendEventSourceRequest(ThreadableLoaderClient*
|
| m_pendingRequestType = InspectorPageAgent::EventSourceResource;
|
| }
|
|
|
| -void InspectorResourceAgent::willDispachEventSourceEvent(ThreadableLoaderClient* eventSource, const AtomicString& eventName, const AtomicString& eventId, const Vector<UChar>& data)
|
| +void InspectorResourceAgent::willDispatchEventSourceEvent(ThreadableLoaderClient* eventSource, const AtomicString& eventName, const AtomicString& eventId, const String& data)
|
| {
|
| ThreadableLoaderClientRequestIdMap::iterator it = m_knownRequestIdMap.find(eventSource);
|
| if (it == m_knownRequestIdMap.end())
|
| return;
|
| - frontend()->eventSourceMessageReceived(IdentifiersFactory::requestId(it->value), monotonicallyIncreasingTime(), eventName.string(), eventId.string(), String(data));
|
| + frontend()->eventSourceMessageReceived(IdentifiersFactory::requestId(it->value), monotonicallyIncreasingTime(), eventName.string(), eventId.string(), data);
|
| }
|
|
|
| void InspectorResourceAgent::didFinishEventSourceRequest(ThreadableLoaderClient* eventSource)
|
|
|