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

Unified Diff: Source/core/plugins/DOMMimeType.h

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch Created 6 years, 2 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/imagebitmap/ImageBitmapFactories.h ('k') | Source/core/plugins/DOMMimeTypeArray.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/plugins/DOMMimeType.h
diff --git a/Source/core/plugins/DOMMimeType.h b/Source/core/plugins/DOMMimeType.h
index d8b2a7ba3db8c611eea4cf2d2edd7292eb578566..3833a2b01d2584df59b692492a9a7d8b838b337f 100644
--- a/Source/core/plugins/DOMMimeType.h
+++ b/Source/core/plugins/DOMMimeType.h
@@ -34,7 +34,7 @@ namespace blink {
class DOMPlugin;
class LocalFrame;
-class DOMMimeType FINAL : public RefCountedWillBeGarbageCollectedFinalized<DOMMimeType>, public ScriptWrappable, public FrameDestructionObserver {
+class DOMMimeType final : public RefCountedWillBeGarbageCollectedFinalized<DOMMimeType>, public ScriptWrappable, public FrameDestructionObserver {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMMimeType);
DEFINE_WRAPPERTYPEINFO();
public:
@@ -49,7 +49,7 @@ public:
const String& description() const;
PassRefPtrWillBeRawPtr<DOMPlugin> enabledPlugin() const;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
const MimeClassInfo& mimeClassInfo() const { return m_pluginData->mimes()[m_index]; }
« no previous file with comments | « Source/core/imagebitmap/ImageBitmapFactories.h ('k') | Source/core/plugins/DOMMimeTypeArray.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698