| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 * | 7 * |
| 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 23 matching lines...) Expand all Loading... |
| 34 #include "bindings/core/v8/ExceptionMessages.h" | 34 #include "bindings/core/v8/ExceptionMessages.h" |
| 35 #include "bindings/core/v8/ExceptionState.h" | 35 #include "bindings/core/v8/ExceptionState.h" |
| 36 #include "bindings/core/v8/Microtask.h" | 36 #include "bindings/core/v8/Microtask.h" |
| 37 #include "bindings/core/v8/Nullable.h" | 37 #include "bindings/core/v8/Nullable.h" |
| 38 #include "bindings/core/v8/ScriptPromiseResolver.h" | 38 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 39 #include "bindings/core/v8/ScriptState.h" | 39 #include "bindings/core/v8/ScriptState.h" |
| 40 #include "bindings/core/v8/ScriptValue.h" | 40 #include "bindings/core/v8/ScriptValue.h" |
| 41 #include "bindings/core/v8/V8ThrowException.h" | 41 #include "bindings/core/v8/V8ThrowException.h" |
| 42 #include "bindings/modules/v8/UnionTypesModules.h" | 42 #include "bindings/modules/v8/UnionTypesModules.h" |
| 43 #include "bindings/modules/v8/V8RTCCertificate.h" | 43 #include "bindings/modules/v8/V8RTCCertificate.h" |
| 44 #include "core/dom/DOMException.h" |
| 44 #include "core/dom/Document.h" | 45 #include "core/dom/Document.h" |
| 45 #include "core/dom/ExceptionCode.h" | 46 #include "core/dom/ExceptionCode.h" |
| 46 #include "core/dom/ExecutionContext.h" | 47 #include "core/dom/ExecutionContext.h" |
| 47 #include "core/frame/Deprecation.h" | 48 #include "core/frame/Deprecation.h" |
| 48 #include "core/frame/LocalFrame.h" | 49 #include "core/frame/LocalFrame.h" |
| 49 #include "core/html/VoidCallback.h" | 50 #include "core/html/VoidCallback.h" |
| 50 #include "core/loader/FrameLoader.h" | 51 #include "core/loader/FrameLoader.h" |
| 51 #include "core/loader/FrameLoaderClient.h" | 52 #include "core/loader/FrameLoaderClient.h" |
| 52 #include "modules/crypto/CryptoResultImpl.h" | 53 #include "modules/crypto/CryptoResultImpl.h" |
| 53 #include "modules/mediastream/MediaConstraintsImpl.h" | 54 #include "modules/mediastream/MediaConstraintsImpl.h" |
| (...skipping 1112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1166 { | 1167 { |
| 1167 visitor->trace(m_localStreams); | 1168 visitor->trace(m_localStreams); |
| 1168 visitor->trace(m_remoteStreams); | 1169 visitor->trace(m_remoteStreams); |
| 1169 visitor->trace(m_dispatchScheduledEventRunner); | 1170 visitor->trace(m_dispatchScheduledEventRunner); |
| 1170 visitor->trace(m_scheduledEvents); | 1171 visitor->trace(m_scheduledEvents); |
| 1171 RefCountedGarbageCollectedEventTargetWithInlineData<RTCPeerConnection>::trac
e(visitor); | 1172 RefCountedGarbageCollectedEventTargetWithInlineData<RTCPeerConnection>::trac
e(visitor); |
| 1172 ActiveDOMObject::trace(visitor); | 1173 ActiveDOMObject::trace(visitor); |
| 1173 } | 1174 } |
| 1174 | 1175 |
| 1175 } // namespace blink | 1176 } // namespace blink |
| OLD | NEW |