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

Unified Diff: Source/core/inspector/InspectorResourceAgent.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/InspectorProfilerAgent.h ('k') | Source/core/inspector/InspectorResourceAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorResourceAgent.h
diff --git a/Source/core/inspector/InspectorResourceAgent.h b/Source/core/inspector/InspectorResourceAgent.h
index add7770e1739053d10867e8464e9270625fa8d4f..45822016801d4022d8518a7ec30c65f0f4b9d0b1 100644
--- a/Source/core/inspector/InspectorResourceAgent.h
+++ b/Source/core/inspector/InspectorResourceAgent.h
@@ -78,7 +78,7 @@ public:
void disable(ErrorString*) override;
void restore() override;
- virtual ~InspectorResourceAgent();
+ ~InspectorResourceAgent() override;
DECLARE_VIRTUAL_TRACE();
// Called from instrumentation.
@@ -126,20 +126,20 @@ public:
void didReceiveWebSocketFrameError(unsigned long identifier, const String&);
// Called from frontend
- virtual void enable(ErrorString*) override;
- virtual void setUserAgentOverride(ErrorString*, const String& userAgent) override;
- virtual void setExtraHTTPHeaders(ErrorString*, const RefPtr<JSONObject>&) override;
- virtual void getResponseBody(ErrorString*, const String& requestId, PassRefPtrWillBeRawPtr<GetResponseBodyCallback>) override;
+ void enable(ErrorString*) override;
+ void setUserAgentOverride(ErrorString*, const String& userAgent) override;
+ void setExtraHTTPHeaders(ErrorString*, const RefPtr<JSONObject>&) override;
+ void getResponseBody(ErrorString*, const String& requestId, PassRefPtrWillBeRawPtr<GetResponseBodyCallback>) override;
- virtual void replayXHR(ErrorString*, const String& requestId) override;
- virtual void setMonitoringXHREnabled(ErrorString*, bool) override;
+ void replayXHR(ErrorString*, const String& requestId) override;
+ void setMonitoringXHREnabled(ErrorString*, bool) override;
- virtual void canClearBrowserCache(ErrorString*, bool*) override;
- virtual void canClearBrowserCookies(ErrorString*, bool*) override;
- virtual void emulateNetworkConditions(ErrorString*, bool, double, double, double) override;
- virtual void setCacheDisabled(ErrorString*, bool cacheDisabled) override;
+ void canClearBrowserCache(ErrorString*, bool*) override;
+ void canClearBrowserCookies(ErrorString*, bool*) override;
+ void emulateNetworkConditions(ErrorString*, bool, double, double, double) override;
+ void setCacheDisabled(ErrorString*, bool cacheDisabled) override;
- virtual void setDataSizeLimitsForTest(ErrorString*, int maxTotal, int maxResource) override;
+ void setDataSizeLimitsForTest(ErrorString*, int maxTotal, int maxResource) override;
// Called from other agents.
void setHostId(const String&);
« no previous file with comments | « Source/core/inspector/InspectorProfilerAgent.h ('k') | Source/core/inspector/InspectorResourceAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698