| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/serviceworkers/FetchEvent.h" | 5 #include "modules/serviceworkers/FetchEvent.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/ScriptState.h" | 7 #include "bindings/core/v8/ScriptState.h" |
| 8 #include "bindings/core/v8/ToV8.h" | 8 #include "bindings/core/v8/ToV8ForCore.h" |
| 9 #include "bindings/core/v8/V8PrivateProperty.h" | 9 #include "bindings/core/v8/V8PrivateProperty.h" |
| 10 #include "core/dom/ExecutionContext.h" | 10 #include "core/dom/ExecutionContext.h" |
| 11 #include "modules/fetch/BytesConsumerForDataConsumerHandle.h" | 11 #include "modules/fetch/BytesConsumerForDataConsumerHandle.h" |
| 12 #include "modules/fetch/Request.h" | 12 #include "modules/fetch/Request.h" |
| 13 #include "modules/fetch/Response.h" | 13 #include "modules/fetch/Response.h" |
| 14 #include "modules/serviceworkers/FetchRespondWithObserver.h" | 14 #include "modules/serviceworkers/FetchRespondWithObserver.h" |
| 15 #include "modules/serviceworkers/ServiceWorkerError.h" | 15 #include "modules/serviceworkers/ServiceWorkerError.h" |
| 16 #include "modules/serviceworkers/ServiceWorkerGlobalScope.h" | 16 #include "modules/serviceworkers/ServiceWorkerGlobalScope.h" |
| 17 #include "platform/network/NetworkUtils.h" | 17 #include "platform/network/NetworkUtils.h" |
| 18 #include "platform/wtf/PtrUtil.h" | 18 #include "platform/wtf/PtrUtil.h" |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 } | 152 } |
| 153 | 153 |
| 154 DEFINE_TRACE(FetchEvent) { | 154 DEFINE_TRACE(FetchEvent) { |
| 155 visitor->Trace(observer_); | 155 visitor->Trace(observer_); |
| 156 visitor->Trace(request_); | 156 visitor->Trace(request_); |
| 157 visitor->Trace(preload_response_property_); | 157 visitor->Trace(preload_response_property_); |
| 158 ExtendableEvent::Trace(visitor); | 158 ExtendableEvent::Trace(visitor); |
| 159 } | 159 } |
| 160 | 160 |
| 161 } // namespace blink | 161 } // namespace blink |
| OLD | NEW |