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

Unified Diff: third_party/WebKit/Source/modules/compositorworker/CompositorWorker.h

Issue 2310673002: [worklets] Split up InProcessWorkerMessagingProxy into a base+worker class. (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/modules/compositorworker/CompositorWorker.h
diff --git a/third_party/WebKit/Source/modules/compositorworker/CompositorWorker.h b/third_party/WebKit/Source/modules/compositorworker/CompositorWorker.h
index 184b67c12b14a89b8143a9664c68573eda4c1f4a..b499319376a006dbe3769e58e59e46335b6fa2d6 100644
--- a/third_party/WebKit/Source/modules/compositorworker/CompositorWorker.h
+++ b/third_party/WebKit/Source/modules/compositorworker/CompositorWorker.h
@@ -14,7 +14,7 @@ namespace blink {
class ExceptionState;
class ExecutionContext;
-class InProcessWorkerGlobalScopeProxy;
+class InProcessWorkerMessagingProxy;
class MODULES_EXPORT CompositorWorker final : public InProcessWorkerBase {
DEFINE_WRAPPERTYPEINFO();
@@ -24,7 +24,7 @@ public:
~CompositorWorker() override;
const AtomicString& interfaceName() const override;
- InProcessWorkerGlobalScopeProxy* createInProcessWorkerGlobalScopeProxy(ExecutionContext*) override;
+ InProcessWorkerMessagingProxy* createInProcessWorkerGlobalScopeProxy(ExecutionContext*) override;
private:
explicit CompositorWorker(ExecutionContext*);

Powered by Google App Engine
This is Rietveld 408576698