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

Unified Diff: Source/core/dom/DOMURL.h

Issue 1219063013: Fix virtual/override/final usage in Source/core/dom/. (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/dom/DOMTypedArray.h ('k') | Source/core/dom/DOMURLUtils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMURL.h
diff --git a/Source/core/dom/DOMURL.h b/Source/core/dom/DOMURL.h
index 9313dc1818cce27afcf84d31ad4dab856f5cac66..17dc127c45c78b494a26b2bf21003647af12f80c 100644
--- a/Source/core/dom/DOMURL.h
+++ b/Source/core/dom/DOMURL.h
@@ -64,11 +64,11 @@ public:
CORE_EXPORT static String createPublicURL(ExecutionContext*, URLRegistrable*, const String& uuid = String());
static void revokeObjectUUID(ExecutionContext*, const String&);
- virtual KURL url() const override { return m_url; }
- virtual void setURL(const KURL& url) override { m_url = url; }
+ KURL url() const override { return m_url; }
+ void setURL(const KURL& url) override { m_url = url; }
- virtual String input() const override { return m_input; }
- virtual void setInput(const String&) override;
+ String input() const override { return m_input; }
+ void setInput(const String&) override;
DEFINE_INLINE_TRACE() { }
« no previous file with comments | « Source/core/dom/DOMTypedArray.h ('k') | Source/core/dom/DOMURLUtils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698