| Index: Source/core/loader/BeaconLoader.h
|
| diff --git a/Source/core/loader/BeaconLoader.h b/Source/core/loader/BeaconLoader.h
|
| index c66f5243f02aa0468545ff8d32e0bd46104247e7..6d1cd6364f25a70bd94f7c24d11853b5e80100cf 100644
|
| --- a/Source/core/loader/BeaconLoader.h
|
| +++ b/Source/core/loader/BeaconLoader.h
|
| @@ -16,7 +16,7 @@ namespace blink {
|
|
|
| class Blob;
|
| class DOMArrayBufferView;
|
| -class DOMFormData;
|
| +class FormData;
|
| class KURL;
|
| class LocalFrame;
|
| class SecurityOrigin;
|
| @@ -32,7 +32,7 @@ public:
|
| static bool sendBeacon(LocalFrame*, int, const KURL&, const String&, int&);
|
| static bool sendBeacon(LocalFrame*, int, const KURL&, PassRefPtr<DOMArrayBufferView>, int&);
|
| static bool sendBeacon(LocalFrame*, int, const KURL&, Blob*, int&);
|
| - static bool sendBeacon(LocalFrame*, int, const KURL&, DOMFormData*, int&);
|
| + static bool sendBeacon(LocalFrame*, int, const KURL&, FormData*, int&);
|
|
|
| private:
|
| class Sender;
|
|
|