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

Unified Diff: Source/core/plugins/testing/DocumentFragmentPluginPlaceholder.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/plugins/testing/DictionaryPluginPlaceholder.h ('k') | Source/core/testing/InternalSettings.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/plugins/testing/DocumentFragmentPluginPlaceholder.h
diff --git a/Source/core/plugins/testing/DocumentFragmentPluginPlaceholder.h b/Source/core/plugins/testing/DocumentFragmentPluginPlaceholder.h
index 7d8300a94c05610f2d312b47e1f077acc473b23f..d89ac0dc4ef9fd06abec652ae333e1f1dc9f0121 100644
--- a/Source/core/plugins/testing/DocumentFragmentPluginPlaceholder.h
+++ b/Source/core/plugins/testing/DocumentFragmentPluginPlaceholder.h
@@ -22,11 +22,11 @@ public:
}
#if !ENABLE(OILPAN)
- virtual ~DocumentFragmentPluginPlaceholder() override { }
+ ~DocumentFragmentPluginPlaceholder() override { }
#endif
DEFINE_INLINE_VIRTUAL_TRACE() { visitor->trace(m_fragment); }
- virtual void loadIntoContainer(ContainerNode& container) override
+ void loadIntoContainer(ContainerNode& container) override
{
RefPtrWillBeRawPtr<Node> clonedFragment = container.document().importNode(m_fragment.get(), true /* deep */, ASSERT_NO_EXCEPTION);
container.appendChild(clonedFragment.release(), ASSERT_NO_EXCEPTION);
« no previous file with comments | « Source/core/plugins/testing/DictionaryPluginPlaceholder.h ('k') | Source/core/testing/InternalSettings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698