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 | 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 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 Loading... |
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 |
OLD | NEW |