| Index: third_party/WebKit/Source/core/probe/CoreProbes.pidl
|
| diff --git a/third_party/WebKit/Source/core/probe/CoreProbes.pidl b/third_party/WebKit/Source/core/probe/CoreProbes.pidl
|
| index 0f91d11e2ee29793fa9ced64ae8271ab3f28b5d1..40c01ab9a5ec952e20cd2bdfe051f72e05efa936 100644
|
| --- a/third_party/WebKit/Source/core/probe/CoreProbes.pidl
|
| +++ b/third_party/WebKit/Source/core/probe/CoreProbes.pidl
|
| @@ -49,9 +49,6 @@
|
| *
|
| * paramList: C++ parameter list with optional names. Names will be deduced from types if omitted but you have to
|
| * specify explicit names for multiple parameters of the same type.
|
| - *
|
| - * Parameters with type PassRefPtr<T> are converted to raw pointers,
|
| - * so reference will not be passed or released until all agents are notified.
|
| */
|
|
|
| interface CoreProbes {
|
| @@ -104,7 +101,7 @@ interface CoreProbes {
|
| void willSendEventSourceRequest(ExecutionContext*, ThreadableLoaderClient* eventSource);
|
| void willDispatchEventSourceEvent(ExecutionContext*, ThreadableLoaderClient* eventSource, const AtomicString& eventName, const AtomicString& eventId, const String& data);
|
| void didFinishEventSourceRequest(ExecutionContext*, ThreadableLoaderClient* eventSource);
|
| - void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderClient* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr<EncodedFormData>, const HTTPHeaderMap& headers, bool includeCredentials);
|
| + void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderClient* client, const AtomicString& method, const KURL& url, bool async, RefPtr<EncodedFormData>, const HTTPHeaderMap& headers, bool includeCredentials);
|
| void didFailXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderClient* client, const AtomicString& method, const String& url);
|
| void didFinishXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderClient* client, const AtomicString& method, const String& url);
|
| void willStartFetch(ExecutionContext*, ThreadableLoaderClient*);
|
|
|