diff options
Diffstat (limited to 'third_party/WebKit/Source/modules/beacon/NavigatorBeacon.h')
-rw-r--r-- | third_party/WebKit/Source/modules/beacon/NavigatorBeacon.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/third_party/WebKit/Source/modules/beacon/NavigatorBeacon.h b/third_party/WebKit/Source/modules/beacon/NavigatorBeacon.h index a8aa5a4..c1ded40 100644 --- a/third_party/WebKit/Source/modules/beacon/NavigatorBeacon.h +++ b/third_party/WebKit/Source/modules/beacon/NavigatorBeacon.h @@ -9,13 +9,10 @@ #include "platform/Supplementable.h" #include "platform/heap/Handle.h" -namespace WTF { -class ArrayBufferView; -} - namespace blink { class Blob; +class DOMArrayBufferView; class DOMFormData; class ExceptionState; class ExecutionContext; @@ -27,7 +24,7 @@ public: static NavigatorBeacon& from(Navigator&); static bool sendBeacon(ExecutionContext*, Navigator&, const String&, const String&, ExceptionState&); - static bool sendBeacon(ExecutionContext*, Navigator&, const String&, PassRefPtr<WTF::ArrayBufferView>, ExceptionState&); + static bool sendBeacon(ExecutionContext*, Navigator&, const String&, PassRefPtr<DOMArrayBufferView>, ExceptionState&); static bool sendBeacon(ExecutionContext*, Navigator&, const String&, Blob*, ExceptionState&); static bool sendBeacon(ExecutionContext*, Navigator&, const String&, PassRefPtrWillBeRawPtr<DOMFormData>, ExceptionState&); @@ -37,7 +34,7 @@ private: static const char* supplementName(); bool sendBeacon(ExecutionContext*, const String&, const String&, ExceptionState&); - bool sendBeacon(ExecutionContext*, const String&, PassRefPtr<WTF::ArrayBufferView>, ExceptionState&); + bool sendBeacon(ExecutionContext*, const String&, PassRefPtr<DOMArrayBufferView>, ExceptionState&); bool sendBeacon(ExecutionContext*, const String&, Blob*, ExceptionState&); bool sendBeacon(ExecutionContext*, const String&, PassRefPtrWillBeRawPtr<DOMFormData>, ExceptionState&); |