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

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

Issue 132233004: Update remaining core classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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/platform/mediastream/RTCPeerConnectionHandler.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 8670725b7171c40782d4e40f09aa7977c366f63d..7d6c13885fe7f90f1056b038b4890a57b2b6434a 100644
--- a/Source/core/plugins/DOMMimeType.h
+++ b/Source/core/plugins/DOMMimeType.h
@@ -33,14 +33,14 @@ namespace WebCore {
class DOMPlugin;
class Frame;
-class DOMMimeType : public RefCounted<DOMMimeType>, public ScriptWrappable, public FrameDestructionObserver {
+class DOMMimeType FINAL : public RefCounted<DOMMimeType>, public ScriptWrappable, public FrameDestructionObserver {
public:
static PassRefPtr<DOMMimeType> create(PassRefPtr<PluginData> pluginData, Frame* frame, unsigned index) { return adoptRef(new DOMMimeType(pluginData, frame, index)); }
- ~DOMMimeType();
+ virtual ~DOMMimeType();
- const String &type() const;
+ const String& type() const;
String suffixes() const;
- const String &description() const;
+ const String& description() const;
PassRefPtr<DOMPlugin> enabledPlugin() const;
private:
« no previous file with comments | « Source/core/platform/mediastream/RTCPeerConnectionHandler.h ('k') | Source/core/plugins/DOMMimeTypeArray.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698