OLD | NEW |
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 30 matching lines...) Expand all Loading... |
41 , m_name(name) | 41 , m_name(name) |
42 , m_type(type) | 42 , m_type(type) |
43 , m_version(version) | 43 , m_version(version) |
44 , m_access(access) | 44 , m_access(access) |
45 , m_isActive(isActive) | 45 , m_isActive(isActive) |
46 { | 46 { |
47 ASSERT(access); | 47 ASSERT(access); |
48 ASSERT(type == MIDIPortTypeInput || type == MIDIPortTypeOutput); | 48 ASSERT(type == MIDIPortTypeInput || type == MIDIPortTypeOutput); |
49 } | 49 } |
50 | 50 |
| 51 String MIDIPort::state() const |
| 52 { |
| 53 // FIXME: Support complete MIDIPortState once Blink API is updated. |
| 54 return m_isActive ? "opened" : "disconnected"; |
| 55 } |
| 56 |
51 String MIDIPort::type() const | 57 String MIDIPort::type() const |
52 { | 58 { |
53 switch (m_type) { | 59 switch (m_type) { |
54 case MIDIPortTypeInput: | 60 case MIDIPortTypeInput: |
55 return "input"; | 61 return "input"; |
56 case MIDIPortTypeOutput: | 62 case MIDIPortTypeOutput: |
57 return "output"; | 63 return "output"; |
58 default: | 64 default: |
59 ASSERT_NOT_REACHED(); | 65 ASSERT_NOT_REACHED(); |
60 } | 66 } |
61 return emptyString(); | 67 return emptyString(); |
62 } | 68 } |
63 | 69 |
64 ExecutionContext* MIDIPort::executionContext() const | 70 ExecutionContext* MIDIPort::executionContext() const |
65 { | 71 { |
66 return m_access->executionContext(); | 72 return m_access->executionContext(); |
67 } | 73 } |
68 | 74 |
69 DEFINE_TRACE(MIDIPort) | 75 DEFINE_TRACE(MIDIPort) |
70 { | 76 { |
71 visitor->trace(m_access); | 77 visitor->trace(m_access); |
72 RefCountedGarbageCollectedEventTargetWithInlineData<MIDIPort>::trace(visitor
); | 78 RefCountedGarbageCollectedEventTargetWithInlineData<MIDIPort>::trace(visitor
); |
73 } | 79 } |
74 | 80 |
75 } // namespace blink | 81 } // namespace blink |
OLD | NEW |