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

Unified Diff: Source/core/plugins/DOMMimeTypeArray.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/plugins/DOMMimeType.h ('k') | Source/core/plugins/DOMPlugin.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/plugins/DOMMimeTypeArray.h
diff --git a/Source/core/plugins/DOMMimeTypeArray.h b/Source/core/plugins/DOMMimeTypeArray.h
index 4bfda79a043696858b471cd1bc7a776f102a5fa4..1b800faf0ae412e2c1b8f2a10c4a40a9216f6ae3 100644
--- a/Source/core/plugins/DOMMimeTypeArray.h
+++ b/Source/core/plugins/DOMMimeTypeArray.h
@@ -34,7 +34,7 @@ namespace blink {
class LocalFrame;
class PluginData;
-class DOMMimeTypeArray FINAL : public RefCountedWillBeGarbageCollected<DOMMimeTypeArray>, public ScriptWrappable, public DOMWindowProperty {
+class DOMMimeTypeArray final : public RefCountedWillBeGarbageCollected<DOMMimeTypeArray>, public ScriptWrappable, public DOMWindowProperty {
DEFINE_WRAPPERTYPEINFO();
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMMimeTypeArray);
public:
@@ -48,7 +48,7 @@ public:
bool canGetItemsForName(const AtomicString& propertyName);
PassRefPtrWillBeRawPtr<DOMMimeType> namedItem(const AtomicString& propertyName);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit DOMMimeTypeArray(LocalFrame*);
« no previous file with comments | « Source/core/plugins/DOMMimeType.h ('k') | Source/core/plugins/DOMPlugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698