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

Unified Diff: Source/core/xml/XSLImportRule.h

Issue 133983002: Update XML classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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/xml/XPathVariableReference.h ('k') | Source/core/xml/XSLStyleSheet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XSLImportRule.h
diff --git a/Source/core/xml/XSLImportRule.h b/Source/core/xml/XSLImportRule.h
index 954e046c8402c1cef314cc4a3266d7cb03fd0576..4d9a77a67e99b20370a589213ac15794b18ed2d0 100644
--- a/Source/core/xml/XSLImportRule.h
+++ b/Source/core/xml/XSLImportRule.h
@@ -33,7 +33,7 @@ namespace WebCore {
class XSLStyleSheetResource;
-class XSLImportRule : private StyleSheetResourceClient {
+class XSLImportRule FINAL : private StyleSheetResourceClient {
WTF_MAKE_FAST_ALLOCATED;
public:
static PassOwnPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href)
@@ -56,7 +56,7 @@ public:
private:
XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
- virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
+ virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) OVERRIDE;
XSLStyleSheet* m_parentStyleSheet;
String m_strHref;
« no previous file with comments | « Source/core/xml/XPathVariableReference.h ('k') | Source/core/xml/XSLStyleSheet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698