| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Ericsson AB. All rights reserved. | 2 * Copyright (C) 2011 Ericsson AB. All rights reserved. |
| 3 * Copyright (C) 2013 Google Inc. All rights reserved. | 3 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 AudioSourceProviderImpl m_sourceProvider; | 100 AudioSourceProviderImpl m_sourceProvider; |
| 101 #endif // ENABLE(WEB_AUDIO) | 101 #endif // ENABLE(WEB_AUDIO) |
| 102 | 102 |
| 103 RefPtr<MediaStreamSource> m_source; | 103 RefPtr<MediaStreamSource> m_source; |
| 104 String m_id; | 104 String m_id; |
| 105 bool m_enabled; | 105 bool m_enabled; |
| 106 bool m_muted; | 106 bool m_muted; |
| 107 OwnPtr<ExtraData> m_extraData; | 107 OwnPtr<ExtraData> m_extraData; |
| 108 }; | 108 }; |
| 109 | 109 |
| 110 typedef Vector<RefPtr<MediaStreamComponent> > MediaStreamComponentVector; | 110 typedef Vector<RefPtr<MediaStreamComponent>> MediaStreamComponentVector; |
| 111 | 111 |
| 112 } // namespace blink | 112 } // namespace blink |
| 113 | 113 |
| 114 #endif // MediaStreamComponent_h | 114 #endif // MediaStreamComponent_h |
| OLD | NEW |