| Index: third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
|
| index 8037d07fd502e6c0e70d6da97ef8f034af17f48b..3782062c94f6fed9487f54169661f84dd085a315 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
|
| @@ -82,9 +82,9 @@ public:
|
| OtherResource
|
| };
|
|
|
| - static PassOwnPtrWillBeRawPtr<InspectorPageAgent> create(InspectedFrames*, Client*, InspectorResourceContentLoader*, InspectorDebuggerAgent*);
|
| + static RawPtr<InspectorPageAgent> create(InspectedFrames*, Client*, InspectorResourceContentLoader*, InspectorDebuggerAgent*);
|
|
|
| - static WillBeHeapVector<RawPtrWillBeMember<Document>> importsForFrame(LocalFrame*);
|
| + static HeapVector<Member<Document>> importsForFrame(LocalFrame*);
|
| static bool cachedResourceContent(Resource*, String* result, bool* base64Encoded);
|
| static bool sharedBufferContent(PassRefPtr<SharedBuffer>, const String& textEncodingName, bool withBase64Encode, String* result);
|
|
|
| @@ -146,8 +146,8 @@ private:
|
|
|
| PassRefPtr<TypeBuilder::Page::Frame> buildObjectForFrame(LocalFrame*);
|
| PassRefPtr<TypeBuilder::Page::FrameResourceTree> buildObjectForFrameTree(LocalFrame*);
|
| - RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
|
| - RawPtrWillBeMember<InspectorDebuggerAgent> m_debuggerAgent;
|
| + Member<InspectedFrames> m_inspectedFrames;
|
| + Member<InspectorDebuggerAgent> m_debuggerAgent;
|
| Client* m_client;
|
| long m_lastScriptIdentifier;
|
| String m_pendingScriptToEvaluateOnLoadOnce;
|
| @@ -155,7 +155,7 @@ private:
|
| bool m_enabled;
|
| bool m_reloading;
|
|
|
| - RawPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceContentLoader;
|
| + Member<InspectorResourceContentLoader> m_inspectorResourceContentLoader;
|
| };
|
|
|
|
|
|
|