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

Side by Side Diff: Source/modules/mediastream/MediaDeviceInfo.cpp

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 years, 3 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 | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/modules/mediasource/VideoPlaybackQuality.cpp ('k') | Source/modules/mediastream/MediaStream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698