Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(767)

Unified Diff: third_party/WebKit/Source/modules/beacon/NavigatorBeacon.cpp

Issue 2707243006: [SharedArrayBuffer] Prevent SharedArrayBuffer being used in Web APIs (Closed)
Patch Set: remove unused checks Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 f789514bf364ca8da6767a36234075dfb25b350d..c795634a0009965f078fbc7c2f6f0242c79026de 100644
--- a/third_party/WebKit/Source/modules/beacon/NavigatorBeacon.cpp
+++ b/third_party/WebKit/Source/modules/beacon/NavigatorBeacon.cpp
@@ -116,8 +116,9 @@ bool NavigatorBeacon::sendBeaconImpl(
bool allowed;
if (data.isArrayBufferView()) {
- allowed = PingLoader::sendBeacon(supplementable()->frame(), allowance, url,
- data.getAsArrayBufferView(), beaconSize);
+ allowed =
+ PingLoader::sendBeacon(supplementable()->frame(), allowance, url,
+ data.getAsArrayBufferView().view(), beaconSize);
} else if (data.isBlob()) {
Blob* blob = data.getAsBlob();
if (!FetchUtils::isSimpleContentType(AtomicString(blob->type()))) {

Powered by Google App Engine
This is Rietveld 408576698