Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(670)

Side by Side Diff: Source/modules/serviceworkers/CacheStorage.cpp

Issue 717933002: Clean up after getPropertyCSSValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase / fix debug compile? Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « Source/modules/presentation/Presentation.cpp ('k') | Source/modules/serviceworkers/ServiceWorker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698