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

Side by Side Diff: third_party/WebKit/Source/web/WebLeakDetector.cpp

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: rebase Created 3 years, 11 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 /* 1 /*
2 * Copyright (C) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "public/web/WebLeakDetector.h" 31 #include "public/web/WebLeakDetector.h"
32 32
33 #include "bindings/core/v8/V8GCController.h" 33 #include "bindings/core/v8/V8GCController.h"
34 #include "core/editing/spellcheck/IdleSpellCheckCallback.h" 34 #include "core/editing/spellcheck/IdleSpellCheckCallback.h"
35 #include "core/editing/spellcheck/SpellChecker.h" 35 #include "core/editing/spellcheck/SpellChecker.h"
36 #include "core/fetch/MemoryCache.h"
37 #include "core/workers/InProcessWorkerMessagingProxy.h" 36 #include "core/workers/InProcessWorkerMessagingProxy.h"
38 #include "core/workers/WorkerThread.h" 37 #include "core/workers/WorkerThread.h"
39 #include "modules/compositorworker/AbstractAnimationWorkletThread.h" 38 #include "modules/compositorworker/AbstractAnimationWorkletThread.h"
40 #include "platform/InstanceCounters.h" 39 #include "platform/InstanceCounters.h"
41 #include "platform/Timer.h" 40 #include "platform/Timer.h"
41 #include "platform/loader/fetch/MemoryCache.h"
42 #include "public/web/WebFrame.h" 42 #include "public/web/WebFrame.h"
43 #include "web/WebLocalFrameImpl.h" 43 #include "web/WebLocalFrameImpl.h"
44 44
45 namespace blink { 45 namespace blink {
46 46
47 namespace { 47 namespace {
48 48
49 class WebLeakDetectorImpl final : public WebLeakDetector { 49 class WebLeakDetectorImpl final : public WebLeakDetector {
50 WTF_MAKE_NONCOPYABLE(WebLeakDetectorImpl); 50 WTF_MAKE_NONCOPYABLE(WebLeakDetectorImpl);
51 51
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 #endif 183 #endif
184 } 184 }
185 185
186 } // namespace 186 } // namespace
187 187
188 WebLeakDetector* WebLeakDetector::create(WebLeakDetectorClient* client) { 188 WebLeakDetector* WebLeakDetector::create(WebLeakDetectorClient* client) {
189 return new WebLeakDetectorImpl(client); 189 return new WebLeakDetectorImpl(client);
190 } 190 }
191 191
192 } // namespace blink 192 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698