| Index: Source/modules/beacon/NavigatorBeacon.h
|
| diff --git a/Source/modules/beacon/NavigatorBeacon.h b/Source/modules/beacon/NavigatorBeacon.h
|
| index a8aa5a4f8a284e698dc5f626207a3bc01efa3603..c1ded40e634724c2eaa9dba93a9276523394e9f0 100644
|
| --- a/Source/modules/beacon/NavigatorBeacon.h
|
| +++ b/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&);
|
|
|
|
|