summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/bridge/runtime_root.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/bridge/runtime_root.h')
-rw-r--r--Source/WebCore/bridge/runtime_root.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/bridge/runtime_root.h b/Source/WebCore/bridge/runtime_root.h
index feade45..f1ea671 100644
--- a/Source/WebCore/bridge/runtime_root.h
+++ b/Source/WebCore/bridge/runtime_root.h
@@ -29,7 +29,7 @@
#if PLATFORM(MAC)
#include "jni_jsobject.h"
#endif
-#include <collector/handles/Global.h>
+#include <heap/Strong.h>
#include <runtime/WeakGCMap.h>
#include <wtf/Forward.h>
@@ -86,7 +86,7 @@ private:
bool m_isValid;
const void* m_nativeHandle;
- Global<JSGlobalObject> m_globalObject;
+ Strong<JSGlobalObject> m_globalObject;
ProtectCountSet m_protectCountSet;
WeakGCMap<RuntimeObject*, RuntimeObject> m_runtimeObjects; // Really need a WeakGCSet, but this will do.