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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioBuffer.h

Issue 2812833003: Revert of [SharedArrayBuffer] Prevent SharedArrayBuffer being used in Web APIs (Closed)
Patch Set: 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/webaudio/AudioBuffer.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioBuffer.h b/third_party/WebKit/Source/modules/webaudio/AudioBuffer.h
index 510431c039f13bcc18dd2cdc782fa9f6d4a064a1..d946994c57457f5f686ff0b2e4d760c88df63913 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioBuffer.h
+++ b/third_party/WebKit/Source/modules/webaudio/AudioBuffer.h
@@ -31,7 +31,6 @@
#include "bindings/core/v8/ScriptWrappable.h"
#include "core/dom/DOMTypedArray.h"
-#include "core/dom/NotShared.h"
#include "modules/ModulesExport.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefPtr.h"
@@ -75,20 +74,15 @@
// Channel data access
unsigned numberOfChannels() const { return channels_.size(); }
- NotShared<DOMFloat32Array> getChannelData(unsigned channel_index,
- ExceptionState&);
- NotShared<DOMFloat32Array> getChannelData(unsigned channel_index);
- void copyFromChannel(NotShared<DOMFloat32Array>,
- long channel_number,
- ExceptionState&);
- void copyFromChannel(NotShared<DOMFloat32Array>,
+ DOMFloat32Array* getChannelData(unsigned channel_index, ExceptionState&);
+ DOMFloat32Array* getChannelData(unsigned channel_index);
+ void copyFromChannel(DOMFloat32Array*, long channel_number, ExceptionState&);
+ void copyFromChannel(DOMFloat32Array*,
long channel_number,
unsigned long start_in_channel,
ExceptionState&);
- void copyToChannel(NotShared<DOMFloat32Array>,
- long channel_number,
- ExceptionState&);
- void copyToChannel(NotShared<DOMFloat32Array>,
+ void copyToChannel(DOMFloat32Array*, long channel_number, ExceptionState&);
+ void copyToChannel(DOMFloat32Array*,
long channel_number,
unsigned long start_in_channel,
ExceptionState&);

Powered by Google App Engine
This is Rietveld 408576698