| Index: third_party/WebKit/Source/core/inspector/InspectorApplicationCacheAgent.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorApplicationCacheAgent.h b/third_party/WebKit/Source/core/inspector/InspectorApplicationCacheAgent.h
|
| index 2d47b595cf09c2d7b615f3b2a8be3554f5200014..edc1fdbe85514d5976677e837e39377614a0d80f 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorApplicationCacheAgent.h
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorApplicationCacheAgent.h
|
| @@ -66,14 +66,15 @@ public:
|
| void getApplicationCacheForFrame(ErrorString*, const String& frameId, RefPtr<TypeBuilder::ApplicationCache::ApplicationCache>&) override;
|
|
|
| private:
|
| - InspectorApplicationCacheAgent(InspectedFrames*);
|
| + explicit InspectorApplicationCacheAgent(InspectedFrames*);
|
| +
|
| PassRefPtr<TypeBuilder::ApplicationCache::ApplicationCache> buildObjectForApplicationCache(const ApplicationCacheHost::ResourceInfoList&, const ApplicationCacheHost::CacheInfo&);
|
| PassRefPtr<TypeBuilder::Array<TypeBuilder::ApplicationCache::ApplicationCacheResource> > buildArrayForApplicationCacheResources(const ApplicationCacheHost::ResourceInfoList&);
|
| PassRefPtr<TypeBuilder::ApplicationCache::ApplicationCacheResource> buildObjectForApplicationCacheResource(const ApplicationCacheHost::ResourceInfo&);
|
|
|
| DocumentLoader* assertFrameWithDocumentLoader(ErrorString*, String frameId);
|
|
|
| - InspectedFrames* m_inspectedFrames;
|
| + RawPtrWillBeMember<InspectedFrames> m_inspectedFrames;
|
| };
|
|
|
| } // namespace blink
|
|
|