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

Side by Side Diff: third_party/WebKit/Source/modules/cachestorage/CacheStorage.cpp

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 years, 8 months 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 "modules/cachestorage/CacheStorage.h" 5 #include "modules/cachestorage/CacheStorage.h"
6 6
7 #include <memory>
8 #include <utility>
7 #include "bindings/core/v8/ScriptPromiseResolver.h" 9 #include "bindings/core/v8/ScriptPromiseResolver.h"
8 #include "bindings/core/v8/ScriptState.h" 10 #include "bindings/core/v8/ScriptState.h"
9 #include "core/dom/DOMException.h" 11 #include "core/dom/DOMException.h"
10 #include "core/dom/ExceptionCode.h" 12 #include "core/dom/ExceptionCode.h"
11 #include "core/inspector/ConsoleMessage.h" 13 #include "core/inspector/ConsoleMessage.h"
12 #include "modules/cachestorage/CacheStorageError.h" 14 #include "modules/cachestorage/CacheStorageError.h"
13 #include "modules/fetch/Request.h" 15 #include "modules/fetch/Request.h"
14 #include "modules/fetch/Response.h" 16 #include "modules/fetch/Response.h"
17 #include "platform/wtf/PtrUtil.h"
15 #include "public/platform/modules/serviceworker/WebServiceWorkerCacheError.h" 18 #include "public/platform/modules/serviceworker/WebServiceWorkerCacheError.h"
16 #include "public/platform/modules/serviceworker/WebServiceWorkerCacheStorage.h" 19 #include "public/platform/modules/serviceworker/WebServiceWorkerCacheStorage.h"
17 #include "wtf/PtrUtil.h"
18 #include <memory>
19 #include <utility>
20 20
21 namespace blink { 21 namespace blink {
22 22
23 namespace { 23 namespace {
24 24
25 DOMException* CreateNoImplementationException() { 25 DOMException* CreateNoImplementationException() {
26 return DOMException::Create(kNotSupportedError, 26 return DOMException::Create(kNotSupportedError,
27 "No CacheStorage implementation provided."); 27 "No CacheStorage implementation provided.");
28 } 28 }
29 29
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 355
356 void CacheStorage::Dispose() { 356 void CacheStorage::Dispose() {
357 web_cache_storage_.reset(); 357 web_cache_storage_.reset();
358 } 358 }
359 359
360 DEFINE_TRACE(CacheStorage) { 360 DEFINE_TRACE(CacheStorage) {
361 visitor->Trace(scoped_fetcher_); 361 visitor->Trace(scoped_fetcher_);
362 } 362 }
363 363
364 } // namespace blink 364 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698