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

Side by Side Diff: Source/modules/webmidi/MIDIPort.h

Issue 635813002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules/webmidi (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « Source/modules/webmidi/MIDIOutput.h ('k') | Source/modules/webmidi/MIDIPortMap.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 virtual ~MIDIPort() { } 51 virtual ~MIDIPort() { }
52 52
53 String id() const { return m_id; } 53 String id() const { return m_id; }
54 String manufacturer() const { return m_manufacturer; } 54 String manufacturer() const { return m_manufacturer; }
55 String name() const { return m_name; } 55 String name() const { return m_name; }
56 String type() const; 56 String type() const;
57 String version() const { return m_version; } 57 String version() const { return m_version; }
58 58
59 MIDIAccess* midiAccess() const { return m_access; } 59 MIDIAccess* midiAccess() const { return m_access; }
60 60
61 virtual void trace(Visitor*) OVERRIDE; 61 virtual void trace(Visitor*) override;
62 62
63 DEFINE_ATTRIBUTE_EVENT_LISTENER(disconnect); 63 DEFINE_ATTRIBUTE_EVENT_LISTENER(disconnect);
64 64
65 // EventTarget 65 // EventTarget
66 virtual const AtomicString& interfaceName() const OVERRIDE { return EventTar getNames::MIDIPort; } 66 virtual const AtomicString& interfaceName() const override { return EventTar getNames::MIDIPort; }
67 virtual ExecutionContext* executionContext() const OVERRIDE FINAL; 67 virtual ExecutionContext* executionContext() const override final;
68 68
69 protected: 69 protected:
70 MIDIPort(MIDIAccess*, const String& id, const String& manufacturer, const St ring& name, MIDIPortTypeCode, const String& version); 70 MIDIPort(MIDIAccess*, const String& id, const String& manufacturer, const St ring& name, MIDIPortTypeCode, const String& version);
71 71
72 private: 72 private:
73 String m_id; 73 String m_id;
74 String m_manufacturer; 74 String m_manufacturer;
75 String m_name; 75 String m_name;
76 MIDIPortTypeCode m_type; 76 MIDIPortTypeCode m_type;
77 String m_version; 77 String m_version;
78 Member<MIDIAccess> m_access; 78 Member<MIDIAccess> m_access;
79 }; 79 };
80 80
81 } // namespace blink 81 } // namespace blink
82 82
83 #endif // MIDIPort_h 83 #endif // MIDIPort_h
OLDNEW
« no previous file with comments | « Source/modules/webmidi/MIDIOutput.h ('k') | Source/modules/webmidi/MIDIPortMap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698