Index: third_party/WebKit/Source/modules/beacon/NavigatorBeacon.cpp |
diff --git a/third_party/WebKit/Source/modules/beacon/NavigatorBeacon.cpp b/third_party/WebKit/Source/modules/beacon/NavigatorBeacon.cpp |
index 829cf3c7526048f45814acdc550b7ff2c840d7e9..8acd932bf730dc2869952e17650ce8916afe94da 100644 |
--- a/third_party/WebKit/Source/modules/beacon/NavigatorBeacon.cpp |
+++ b/third_party/WebKit/Source/modules/beacon/NavigatorBeacon.cpp |
@@ -118,7 +118,7 @@ bool NavigatorBeacon::SendBeaconImpl( |
if (data.isArrayBufferView()) { |
allowed = |
PingLoader::SendBeacon(GetSupplementable()->GetFrame(), allowance, url, |
- data.getAsArrayBufferView(), beacon_size); |
+ data.getAsArrayBufferView().View(), beacon_size); |
} else if (data.isBlob()) { |
Blob* blob = data.getAsBlob(); |
if (!FetchUtils::IsSimpleContentType(AtomicString(blob->type()))) { |