| Index: Source/core/inspector/InspectorApplicationCacheAgent.h
|
| diff --git a/Source/core/inspector/InspectorApplicationCacheAgent.h b/Source/core/inspector/InspectorApplicationCacheAgent.h
|
| index bd210b0931514f32abef65652de3b82628a6e000..d3f609f5d306c58ecb1e04d1703b8893f05f91d6 100644
|
| --- a/Source/core/inspector/InspectorApplicationCacheAgent.h
|
| +++ b/Source/core/inspector/InspectorApplicationCacheAgent.h
|
| @@ -48,7 +48,7 @@ public:
|
| {
|
| return adoptPtrWillBeNoop(new InspectorApplicationCacheAgent(pageAgent));
|
| }
|
| - virtual ~InspectorApplicationCacheAgent() { }
|
| + ~InspectorApplicationCacheAgent() override { }
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| // InspectorBaseAgent
|
| @@ -60,10 +60,10 @@ public:
|
| void networkStateChanged(LocalFrame*, bool online);
|
|
|
| // ApplicationCache API for InspectorFrontend
|
| - virtual void enable(ErrorString*) 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;
|
| + void enable(ErrorString*) override;
|
| + void getFramesWithManifests(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::ApplicationCache::FrameWithManifest>>& result) override;
|
| + void getManifestForFrame(ErrorString*, const String& frameId, String* manifestURL) override;
|
| + void getApplicationCacheForFrame(ErrorString*, const String& frameId, RefPtr<TypeBuilder::ApplicationCache::ApplicationCache>&) override;
|
|
|
| private:
|
| InspectorApplicationCacheAgent(InspectorPageAgent*);
|
|
|