diff options
Diffstat (limited to 'Source/JavaScriptCore/API/JSClassRef.h')
-rw-r--r-- | Source/JavaScriptCore/API/JSClassRef.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/JavaScriptCore/API/JSClassRef.h b/Source/JavaScriptCore/API/JSClassRef.h index 239c5a4..d346cc5 100644 --- a/Source/JavaScriptCore/API/JSClassRef.h +++ b/Source/JavaScriptCore/API/JSClassRef.h @@ -28,10 +28,10 @@ #include "JSObjectRef.h" -#include <runtime/JSObject.h> -#include <runtime/Protect.h> -#include <runtime/UString.h> -#include <runtime/WeakGCPtr.h> +#include "Weak.h" +#include "JSObject.h" +#include "Protect.h" +#include "UString.h" #include <wtf/HashMap.h> struct StaticValueEntry { @@ -82,7 +82,7 @@ public: OpaqueJSClassStaticValuesTable* staticValues; OpaqueJSClassStaticFunctionsTable* staticFunctions; - JSC::WeakGCPtr<JSC::JSObject> cachedPrototype; + JSC::Weak<JSC::JSObject> cachedPrototype; }; struct OpaqueJSClass : public ThreadSafeRefCounted<OpaqueJSClass> { |