| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 MediaDeviceInfo* MediaDeviceInfo::create(const WebMediaDeviceInfo& webMediaDevic
eInfo) | 33 MediaDeviceInfo* MediaDeviceInfo::create(const WebMediaDeviceInfo& webMediaDevic
eInfo) |
| 34 { | 34 { |
| 35 ASSERT(!webMediaDeviceInfo.isNull()); | 35 ASSERT(!webMediaDeviceInfo.isNull()); |
| 36 return new MediaDeviceInfo(webMediaDeviceInfo); | 36 return new MediaDeviceInfo(webMediaDeviceInfo); |
| 37 } | 37 } |
| 38 | 38 |
| 39 MediaDeviceInfo::MediaDeviceInfo(const WebMediaDeviceInfo& webMediaDeviceInfo) | 39 MediaDeviceInfo::MediaDeviceInfo(const WebMediaDeviceInfo& webMediaDeviceInfo) |
| 40 : m_webMediaDeviceInfo(webMediaDeviceInfo) | 40 : m_webMediaDeviceInfo(webMediaDeviceInfo) |
| 41 { | 41 { |
| 42 ScriptWrappable::init(this); | |
| 43 } | 42 } |
| 44 | 43 |
| 45 String MediaDeviceInfo::deviceId() const | 44 String MediaDeviceInfo::deviceId() const |
| 46 { | 45 { |
| 47 return m_webMediaDeviceInfo.deviceId(); | 46 return m_webMediaDeviceInfo.deviceId(); |
| 48 } | 47 } |
| 49 | 48 |
| 50 String MediaDeviceInfo::kind() const | 49 String MediaDeviceInfo::kind() const |
| 51 { | 50 { |
| 52 switch (m_webMediaDeviceInfo.kind()) { | 51 switch (m_webMediaDeviceInfo.kind()) { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 66 { | 65 { |
| 67 return m_webMediaDeviceInfo.label(); | 66 return m_webMediaDeviceInfo.label(); |
| 68 } | 67 } |
| 69 | 68 |
| 70 String MediaDeviceInfo::groupId() const | 69 String MediaDeviceInfo::groupId() const |
| 71 { | 70 { |
| 72 return m_webMediaDeviceInfo.groupId(); | 71 return m_webMediaDeviceInfo.groupId(); |
| 73 } | 72 } |
| 74 | 73 |
| 75 } // namespace blink | 74 } // namespace blink |
| OLD | NEW |