Chromium Code Reviews| 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..cdc784d19f368754a6cba22c5e20f07c2fd35790 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; |
| + OwnPtrWillBeMember<InspectedFrames> m_inspectedFrames; |
|
sof
2015/11/16 09:03:45
This should be RawPtrWillBeMember<>; fixed in ps#3
|
| }; |
| } // namespace blink |