| Index: Source/core/inspector/InspectorApplicationCacheAgent.h
|
| diff --git a/Source/core/inspector/InspectorApplicationCacheAgent.h b/Source/core/inspector/InspectorApplicationCacheAgent.h
|
| index 2375773806dde8ccaf8ace83f1fdad2d104d313d..8c00270826ce8b4a72d15f047590f9d64e2b4b36 100644
|
| --- a/Source/core/inspector/InspectorApplicationCacheAgent.h
|
| +++ b/Source/core/inspector/InspectorApplicationCacheAgent.h
|
| @@ -61,14 +61,14 @@ public:
|
|
|
| // ApplicationCache API for InspectorFrontend
|
| virtual void enable(ErrorString*) override;
|
| - virtual void getFramesWithManifests(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::ApplicationCache::FrameWithManifest> >& result) override;
|
| + virtual void getFramesWithManifests(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::ApplicationCache::FrameWithManifest>>& result) override;
|
| virtual void getManifestForFrame(ErrorString*, const String& frameId, String* manifestURL) override;
|
| virtual void getApplicationCacheForFrame(ErrorString*, const String& frameId, RefPtr<TypeBuilder::ApplicationCache::ApplicationCache>&) override;
|
|
|
| private:
|
| InspectorApplicationCacheAgent(InspectorPageAgent*);
|
| PassRefPtr<TypeBuilder::ApplicationCache::ApplicationCache> buildObjectForApplicationCache(const ApplicationCacheHost::ResourceInfoList&, const ApplicationCacheHost::CacheInfo&);
|
| - PassRefPtr<TypeBuilder::Array<TypeBuilder::ApplicationCache::ApplicationCacheResource> > buildArrayForApplicationCacheResources(const ApplicationCacheHost::ResourceInfoList&);
|
| + PassRefPtr<TypeBuilder::Array<TypeBuilder::ApplicationCache::ApplicationCacheResource>> buildArrayForApplicationCacheResources(const ApplicationCacheHost::ResourceInfoList&);
|
| PassRefPtr<TypeBuilder::ApplicationCache::ApplicationCacheResource> buildObjectForApplicationCacheResource(const ApplicationCacheHost::ResourceInfo&);
|
|
|
| DocumentLoader* assertFrameWithDocumentLoader(ErrorString*, String frameId);
|
|
|