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

Unified Diff: third_party/WebKit/Source/core/workers/ThreadedWorkletGlobalScopeProxy.h

Issue 2312493002: [worklets] Introduce ThreadedWorkletMessagingProxy and AnimationWorkletMessagaingProxy. (Closed)
Patch Set: rebase. Created 4 years, 3 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/core/workers/ThreadedWorkletGlobalScopeProxy.h
diff --git a/third_party/WebKit/Source/core/workers/ThreadedWorkletGlobalScopeProxy.h b/third_party/WebKit/Source/core/workers/ThreadedWorkletGlobalScopeProxy.h
index b3c82b24fb894654ce9af64f8274ff8b14b3fba0..592eac5e9cd4191f5884f48225bbcf06f93786c6 100644
--- a/third_party/WebKit/Source/core/workers/ThreadedWorkletGlobalScopeProxy.h
+++ b/third_party/WebKit/Source/core/workers/ThreadedWorkletGlobalScopeProxy.h
@@ -7,19 +7,14 @@
#include "core/workers/WorkletGlobalScopeProxy.h"
+// TODO(ikilpatrick): remove this file once AudioWorklet is no longer using it.
+
namespace blink {
class ThreadedWorkletGlobalScopeProxy : public WorkletGlobalScopeProxy {
public:
- void evaluateScript(const ScriptSourceCode&) final
- {
- // TODO(ikilpatrick): implement.
- }
-
- void terminateWorkletGlobalScope() final
- {
- // TODO(ikilpatrick): implement.
- }
+ void evaluateScript(const ScriptSourceCode&) final {}
+ void terminateWorkletGlobalScope() final {}
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698