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

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

Issue 2312493002: [worklets] Introduce ThreadedWorkletMessagingProxy and AnimationWorkletMessagaingProxy. (Closed)
Patch Set: fix buid /me shakes fist a GN files. 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..3e1c6838fe6939a5710cdc9f7245da58af640d56 100644
--- a/third_party/WebKit/Source/core/workers/ThreadedWorkletGlobalScopeProxy.h
+++ b/third_party/WebKit/Source/core/workers/ThreadedWorkletGlobalScopeProxy.h
@@ -7,19 +7,15 @@
#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