| Index: third_party/WebKit/Source/bindings/core/v8/ScriptSourceCode.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptSourceCode.h b/third_party/WebKit/Source/bindings/core/v8/ScriptSourceCode.h
|
| index 0d4056e1496c2ae4668900f9ce0e0dcd45d255cf..0cc57e43d1e5ba740c0b858211fe5b9459b8395d 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptSourceCode.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptSourceCode.h
|
| @@ -33,7 +33,6 @@
|
|
|
| #include "bindings/core/v8/ScriptStreamer.h"
|
| #include "core/CoreExport.h"
|
| -#include "core/fetch/ResourcePtr.h"
|
| #include "core/fetch/ScriptResource.h"
|
| #include "platform/heap/Handle.h"
|
| #include "platform/weborigin/KURL.h"
|
| @@ -42,9 +41,6 @@
|
|
|
| namespace blink {
|
|
|
| -template <class R> class ResourcePtr;
|
| -class ScriptResource;
|
| -
|
| class CORE_EXPORT ScriptSourceCode final {
|
| DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
|
| public:
|
| @@ -78,7 +74,7 @@ private:
|
| void treatNullSourceAsEmpty();
|
|
|
| CompressibleString m_source;
|
| - ResourcePtr<ScriptResource> m_resource;
|
| + RefPtrWillBeMember<ScriptResource> m_resource;
|
| RefPtrWillBeMember<ScriptStreamer> m_streamer;
|
| mutable KURL m_url;
|
| TextPosition m_startPosition;
|
|
|