| 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 "config.h" | 5 #include "config.h" |
| 6 #include "modules/serviceworkers/CacheStorage.h" | 6 #include "modules/serviceworkers/CacheStorage.h" |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptPromiseResolver.h" | 8 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 9 #include "bindings/core/v8/ScriptState.h" | 9 #include "bindings/core/v8/ScriptState.h" |
| 10 #include "core/dom/DOMException.h" | 10 #include "core/dom/DOMException.h" |
| 11 #include "core/dom/ExceptionCode.h" |
| 11 #include "modules/serviceworkers/Cache.h" | 12 #include "modules/serviceworkers/Cache.h" |
| 12 #include "public/platform/WebServiceWorkerCacheError.h" | 13 #include "public/platform/WebServiceWorkerCacheError.h" |
| 13 #include "public/platform/WebServiceWorkerCacheStorage.h" | 14 #include "public/platform/WebServiceWorkerCacheStorage.h" |
| 14 | 15 |
| 15 namespace blink { | 16 namespace blink { |
| 16 | 17 |
| 17 namespace { | 18 namespace { |
| 18 | 19 |
| 19 PassRefPtrWillBeRawPtr<DOMException> createNoImplementationException() | 20 PassRefPtrWillBeRawPtr<DOMException> createNoImplementationException() |
| 20 { | 21 { |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 { | 216 { |
| 216 visitor->trace(m_nameToCacheMap); | 217 visitor->trace(m_nameToCacheMap); |
| 217 } | 218 } |
| 218 | 219 |
| 219 CacheStorage::CacheStorage(WebServiceWorkerCacheStorage* webCacheStorage) | 220 CacheStorage::CacheStorage(WebServiceWorkerCacheStorage* webCacheStorage) |
| 220 : m_webCacheStorage(webCacheStorage) | 221 : m_webCacheStorage(webCacheStorage) |
| 221 { | 222 { |
| 222 } | 223 } |
| 223 | 224 |
| 224 } // namespace blink | 225 } // namespace blink |
| OLD | NEW |