| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "modules/presentation/PresentationRequest.h" | 5 #include "modules/presentation/PresentationRequest.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/CallbackPromiseAdapter.h" | 7 #include "bindings/core/v8/CallbackPromiseAdapter.h" |
| 8 #include "bindings/core/v8/ExceptionState.h" | 8 #include "bindings/core/v8/ExceptionState.h" |
| 9 #include "bindings/core/v8/ScriptPromise.h" | 9 #include "bindings/core/v8/ScriptPromise.h" |
| 10 #include "bindings/core/v8/ScriptPromiseResolver.h" | 10 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 return m_url; | 146 return m_url; |
| 147 } | 147 } |
| 148 | 148 |
| 149 DEFINE_TRACE(PresentationRequest) | 149 DEFINE_TRACE(PresentationRequest) |
| 150 { | 150 { |
| 151 RefCountedGarbageCollectedEventTargetWithInlineData<PresentationRequest>::tr
ace(visitor); | 151 RefCountedGarbageCollectedEventTargetWithInlineData<PresentationRequest>::tr
ace(visitor); |
| 152 ActiveDOMObject::trace(visitor); | 152 ActiveDOMObject::trace(visitor); |
| 153 } | 153 } |
| 154 | 154 |
| 155 PresentationRequest::PresentationRequest(ExecutionContext* executionContext, con
st KURL& url) | 155 PresentationRequest::PresentationRequest(ExecutionContext* executionContext, con
st KURL& url) |
| 156 : ActiveDOMObject(executionContext) | 156 : ActiveScriptWrappable(this) |
| 157 , ActiveDOMObject(executionContext) |
| 157 , m_url(url) | 158 , m_url(url) |
| 158 { | 159 { |
| 159 } | 160 } |
| 160 | 161 |
| 161 } // namespace blink | 162 } // namespace blink |
| OLD | NEW |