Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(793)

Unified Diff: Source/core/inspector/InspectorApplicationCacheAgent.h

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/inspector/InspectorAnimationAgent.h ('k') | Source/core/inspector/InspectorBaseAgent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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*);
« no previous file with comments | « Source/core/inspector/InspectorAnimationAgent.h ('k') | Source/core/inspector/InspectorBaseAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698