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

Side by Side Diff: Source/modules/mediastream/SourceInfo.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) 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 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 SourceInfo* SourceInfo::create(const WebSourceInfo& webSourceInfo) 33 SourceInfo* SourceInfo::create(const WebSourceInfo& webSourceInfo)
34 { 34 {
35 ASSERT(!webSourceInfo.isNull()); 35 ASSERT(!webSourceInfo.isNull());
36 return new SourceInfo(webSourceInfo); 36 return new SourceInfo(webSourceInfo);
37 } 37 }
38 38
39 SourceInfo::SourceInfo(const WebSourceInfo& webSourceInfo) 39 SourceInfo::SourceInfo(const WebSourceInfo& webSourceInfo)
40 : m_webSourceInfo(webSourceInfo) 40 : m_webSourceInfo(webSourceInfo)
41 { 41 {
42 ScriptWrappable::init(this);
43 } 42 }
44 43
45 String SourceInfo::id() const 44 String SourceInfo::id() const
46 { 45 {
47 return m_webSourceInfo.id(); 46 return m_webSourceInfo.id();
48 } 47 }
49 48
50 String SourceInfo::kind() const 49 String SourceInfo::kind() const
51 { 50 {
52 switch (m_webSourceInfo.kind()) { 51 switch (m_webSourceInfo.kind()) {
(...skipping 23 matching lines...) Expand all
76 return "user"; 75 return "user";
77 case WebSourceInfo::VideoFacingModeEnvironment: 76 case WebSourceInfo::VideoFacingModeEnvironment:
78 return "environment"; 77 return "environment";
79 } 78 }
80 79
81 ASSERT_NOT_REACHED(); 80 ASSERT_NOT_REACHED();
82 return String(); 81 return String();
83 } 82 }
84 83
85 } // namespace blink 84 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/mediastream/RTCStatsResponse.cpp ('k') | Source/modules/netinfo/NetworkInformation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698