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

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

Issue 2606643002: Supplement should have a Member to the corresponding Supplementable object (Closed)
Patch Set: temp Created 4 years 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/WorkerNavigator.h
diff --git a/third_party/WebKit/Source/core/workers/WorkerNavigator.h b/third_party/WebKit/Source/core/workers/WorkerNavigator.h
index 156948d312b5de39f952d05d6fbe429abc351940..1362720024af77f893fe5dded961ca67d2a6d0d9 100644
--- a/third_party/WebKit/Source/core/workers/WorkerNavigator.h
+++ b/third_party/WebKit/Source/core/workers/WorkerNavigator.h
@@ -27,6 +27,7 @@
#define WorkerNavigator_h
#include "bindings/core/v8/ScriptWrappable.h"
+#include "core/CoreExport.h"
#include "core/frame/NavigatorCPU.h"
#include "core/frame/NavigatorID.h"
#include "core/frame/NavigatorOnLine.h"
@@ -36,12 +37,13 @@
namespace blink {
-class WorkerNavigator final : public GarbageCollectedFinalized<WorkerNavigator>,
- public ScriptWrappable,
- public NavigatorCPU,
- public NavigatorID,
- public NavigatorOnLine,
- public Supplementable<WorkerNavigator> {
+class CORE_EXPORT WorkerNavigator final
+ : public GarbageCollectedFinalized<WorkerNavigator>,
+ public ScriptWrappable,
+ public NavigatorCPU,
+ public NavigatorID,
+ public NavigatorOnLine,
+ public Supplementable<WorkerNavigator> {
DEFINE_WRAPPERTYPEINFO();
USING_GARBAGE_COLLECTED_MIXIN(WorkerNavigator);

Powered by Google App Engine
This is Rietveld 408576698