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

Unified Diff: Source/web/WebDataSourceImpl.h

Issue 1230533002: Fix virtual/override/final usage in Source/web/. (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/web/WebDOMActivityLogger.cpp ('k') | Source/web/WebDevToolsAgentImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDataSourceImpl.h
diff --git a/Source/web/WebDataSourceImpl.h b/Source/web/WebDataSourceImpl.h
index 717fdd7e929c0d53c32819df79ee46c6c17031a6..89a97eb655478bdb7e503cd82c216a4523e5de76 100644
--- a/Source/web/WebDataSourceImpl.h
+++ b/Source/web/WebDataSourceImpl.h
@@ -56,19 +56,19 @@ public:
}
// WebDataSource methods:
- virtual const WebURLRequest& originalRequest() const override;
- virtual const WebURLRequest& request() const override;
- virtual const WebURLResponse& response() const override;
- virtual bool hasUnreachableURL() const override;
- virtual WebURL unreachableURL() const override;
- virtual void appendRedirect(const WebURL&) override;
- virtual void redirectChain(WebVector<WebURL>&) const override;
- virtual bool isClientRedirect() const override;
- virtual bool replacesCurrentHistoryItem() const override;
- virtual WebNavigationType navigationType() const override;
- virtual ExtraData* extraData() const override;
- virtual void setExtraData(ExtraData*) override;
- virtual void setNavigationStartTime(double) override;
+ const WebURLRequest& originalRequest() const override;
+ const WebURLRequest& request() const override;
+ const WebURLResponse& response() const override;
+ bool hasUnreachableURL() const override;
+ WebURL unreachableURL() const override;
+ void appendRedirect(const WebURL&) override;
+ void redirectChain(WebVector<WebURL>&) const override;
+ bool isClientRedirect() const override;
+ bool replacesCurrentHistoryItem() const override;
+ WebNavigationType navigationType() const override;
+ ExtraData* extraData() const override;
+ void setExtraData(ExtraData*) override;
+ void setNavigationStartTime(double) override;
static WebNavigationType toWebNavigationType(NavigationType);
@@ -79,8 +79,8 @@ public:
private:
WebDataSourceImpl(LocalFrame*, const ResourceRequest&, const SubstituteData&);
- virtual ~WebDataSourceImpl();
- virtual void detachFromFrame() override;
+ ~WebDataSourceImpl() override;
+ void detachFromFrame() override;
// Mutable because the const getters will magically sync these to the
// latest version from WebKit.
« no previous file with comments | « Source/web/WebDOMActivityLogger.cpp ('k') | Source/web/WebDevToolsAgentImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698