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

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

Issue 2793593002: AudioWorklet prototype
Patch Set: Merge changes, AudioParam bug fix Created 3 years, 5 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/AudioWorkletObjectProxy.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioWorkletObjectProxy.h b/third_party/WebKit/Source/modules/webaudio/AudioWorkletObjectProxy.h
new file mode 100644
index 0000000000000000000000000000000000000000..e31185d9befd318aafedcd33686296aaffc59ee1
--- /dev/null
+++ b/third_party/WebKit/Source/modules/webaudio/AudioWorkletObjectProxy.h
@@ -0,0 +1,66 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef AudioWorkletObjectProxy_h
+#define AudioWorkletObjectProxy_h
+
+#include "bindings/core/v8/SourceLocation.h"
+#include "core/CoreExport.h"
+#include "core/dom/MessagePort.h"
+#include "core/workers/ThreadedObjectProxyBase.h"
+#include "core/workers/WorkerReportingProxy.h"
+
+namespace blink {
+
+class AudioWorkletHandler;
+class AudioWorkletMessagingProxy;
+class WaitableEvent;
+class WorkerThread;
+
+// This class is a duplication of ThreadedWorkletObjectProxy, in order to match
+// the implementation of AudioWorkletMessagingProxy.
+class CORE_EXPORT AudioWorkletObjectProxy : public ThreadedObjectProxyBase {
+ USING_FAST_MALLOC(AudioWorkletObjectProxy);
+ WTF_MAKE_NONCOPYABLE(AudioWorkletObjectProxy);
+
+ public:
+ static std::unique_ptr<AudioWorkletObjectProxy> Create(
+ AudioWorkletMessagingProxy*,
+ ParentFrameTaskRunners*);
+ ~AudioWorkletObjectProxy() override;
+
+ void EvaluateScript(const String& source,
+ const KURL& script_url,
+ WorkerThread*);
+
+ void CreateProcessorInstance(const String& name,
+ AudioWorkletHandler*,
+ WaitableEvent*,
+ WorkerThread*);
+
+ // ThreadedObjectProxyBase overrides.
+ void ReportException(const String& error_message,
+ std::unique_ptr<SourceLocation>,
+ int exception_id) final {}
+ void DidEvaluateWorkerScript(bool success) final {}
+ void WillDestroyWorkerGlobalScope() final {}
+
+ protected:
+ AudioWorkletObjectProxy(AudioWorkletMessagingProxy*,
+ ParentFrameTaskRunners*);
+
+ CrossThreadWeakPersistent<ThreadedMessagingProxyBase> MessagingProxyWeakPtr()
+ final;
+
+ private:
+ // No guarantees about the lifetimes of tasks posted by this proxy wrt the
+ // AudioWorkletMessagingProxy so a weak pointer must be used when posting
+ // the tasks.
+ CrossThreadWeakPersistent<AudioWorkletMessagingProxy>
+ messaging_proxy_weak_ptr_;
+};
+
+} // namespace blink
+
+#endif // AudioWorkletObjectProxy_h

Powered by Google App Engine
This is Rietveld 408576698