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

Unified Diff: third_party/WebKit/Source/modules/exported/WebEmbeddedWorkerImpl.h

Issue 2939623002: [DONT COMMIT] WIP: WorkerClientsInitializer (Closed)
Patch Set: finalize2 Created 3 years, 6 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/exported/WebEmbeddedWorkerImpl.h
diff --git a/third_party/WebKit/Source/modules/exported/WebEmbeddedWorkerImpl.h b/third_party/WebKit/Source/modules/exported/WebEmbeddedWorkerImpl.h
index ef978c7cf37b2ddcafac497c7a03b0ad7e0b5ff5..782b87afae8df778c30affec7fd388083f65333a 100644
--- a/third_party/WebKit/Source/modules/exported/WebEmbeddedWorkerImpl.h
+++ b/third_party/WebKit/Source/modules/exported/WebEmbeddedWorkerImpl.h
@@ -32,6 +32,8 @@
#define WebEmbeddedWorkerImpl_h
#include <memory>
+#include "core/workers/WorkerClients.h"
+#include "modules/ModulesExport.h"
#include "platform/heap/Handle.h"
#include "public/platform/Platform.h"
#include "public/platform/WebContentSecurityPolicy.h"
@@ -50,9 +52,10 @@ class WorkerInspectorProxy;
class WorkerScriptLoader;
class WorkerThread;
-class WebEmbeddedWorkerImpl final : public WebEmbeddedWorker,
- public WebFrameClient,
- public WebDevToolsAgentClient {
+class MODULES_EXPORT WebEmbeddedWorkerImpl final
+ : public WebEmbeddedWorker,
+ public WebFrameClient,
+ NON_EXPORTED_BASE(public WebDevToolsAgentClient) {
WTF_MAKE_NONCOPYABLE(WebEmbeddedWorkerImpl);
public:
@@ -139,6 +142,8 @@ class WebEmbeddedWorkerImpl final : public WebEmbeddedWorker,
WaitingForDebuggerState waiting_for_debugger_state_;
};
+extern template class WorkerClientsInitializer<WebEmbeddedWorkerImpl>;
+
} // namespace blink
#endif // WebEmbeddedWorkerImpl_h

Powered by Google App Engine
This is Rietveld 408576698