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

Unified Diff: Source/core/fetch/TextResource.h

Issue 1229743005: Fix virtual/override/final usage in Source/core/{fetch,loader,streams,xmlhttprequest}/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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/fetch/StyleSheetResourceClient.h ('k') | Source/core/fetch/XSLStyleSheetResource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/TextResource.h
diff --git a/Source/core/fetch/TextResource.h b/Source/core/fetch/TextResource.h
index 9054e5cba7eb54384574ab0ef9be3ec58f2492c0..e106f9c37857fc47ded644c5cc3cbdc8078a415c 100644
--- a/Source/core/fetch/TextResource.h
+++ b/Source/core/fetch/TextResource.h
@@ -18,12 +18,12 @@ public:
// call time.
String decodedText() const;
- virtual void setEncoding(const String&) override;
- virtual String encoding() const override;
+ void setEncoding(const String&) override;
+ String encoding() const override;
protected:
TextResource(const ResourceRequest&, Type, const String& mimeType, const String& charset);
- virtual ~TextResource();
+ ~TextResource() override;
private:
OwnPtr<TextResourceDecoder> m_decoder;
« no previous file with comments | « Source/core/fetch/StyleSheetResourceClient.h ('k') | Source/core/fetch/XSLStyleSheetResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698