OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * Copyright (C) 2011, 2012 Ericsson AB. All rights reserved. | 3 * Copyright (C) 2011, 2012 Ericsson AB. 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 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 URLRegistry& MediaStream::registry() const | 390 URLRegistry& MediaStream::registry() const |
391 { | 391 { |
392 return MediaStreamRegistry::registry(); | 392 return MediaStreamRegistry::registry(); |
393 } | 393 } |
394 | 394 |
395 void MediaStream::trace(Visitor* visitor) | 395 void MediaStream::trace(Visitor* visitor) |
396 { | 396 { |
397 visitor->trace(m_audioTracks); | 397 visitor->trace(m_audioTracks); |
398 visitor->trace(m_videoTracks); | 398 visitor->trace(m_videoTracks); |
399 visitor->trace(m_scheduledEvents); | 399 visitor->trace(m_scheduledEvents); |
| 400 EventTargetWithInlineData::trace(visitor); |
400 } | 401 } |
401 | 402 |
402 } // namespace WebCore | 403 } // namespace WebCore |
OLD | NEW |