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

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

Issue 2342013002: Revert of [worklets] Introduce ThreadedWorkletMessagingProxy and AnimationWorkletMessagaingProxy. (Closed)
Patch Set: 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 3e1c6838fe6939a5710cdc9f7245da58af640d56..b3c82b24fb894654ce9af64f8274ff8b14b3fba0 100644
--- a/third_party/WebKit/Source/core/workers/ThreadedWorkletGlobalScopeProxy.h
+++ b/third_party/WebKit/Source/core/workers/ThreadedWorkletGlobalScopeProxy.h
@@ -7,15 +7,19 @@
#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 {}
+ void evaluateScript(const ScriptSourceCode&) final
+ {
+ // TODO(ikilpatrick): implement.
+ }
- void terminateWorkletGlobalScope() final {}
+ void terminateWorkletGlobalScope() final
+ {
+ // TODO(ikilpatrick): implement.
+ }
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698