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

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

Issue 1888703002: Worker: Rename worker components to clarify what they work for (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add missing files Created 4 years, 8 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/DedicatedWorkerMessagingProxy.h
diff --git a/third_party/WebKit/Source/core/workers/DedicatedWorkerMessagingProxy.h b/third_party/WebKit/Source/core/workers/DedicatedWorkerMessagingProxy.h
index ff081a863123b4d1da168cc82755d1ed4a802350..941e0697af193de3f02ce36cdbcfe8ad30af2c7c 100644
--- a/third_party/WebKit/Source/core/workers/DedicatedWorkerMessagingProxy.h
+++ b/third_party/WebKit/Source/core/workers/DedicatedWorkerMessagingProxy.h
@@ -6,13 +6,13 @@
#define DedicatedWorkerMessagingProxy_h
#include "core/CoreExport.h"
-#include "core/workers/WorkerMessagingProxy.h"
+#include "core/workers/InProcessWorkerMessagingProxy.h"
namespace blink {
-class CORE_EXPORT DedicatedWorkerMessagingProxy final : public WorkerMessagingProxy {
+class CORE_EXPORT DedicatedWorkerMessagingProxy final : public InProcessWorkerMessagingProxy {
WTF_MAKE_NONCOPYABLE(DedicatedWorkerMessagingProxy);
- USING_FAST_MALLOC(WorkerMessagingProxy);
+ USING_FAST_MALLOC(DedicatedWorkerMessagingProxy);
public:
DedicatedWorkerMessagingProxy(InProcessWorkerBase*, WorkerClients*);
~DedicatedWorkerMessagingProxy() override;

Powered by Google App Engine
This is Rietveld 408576698