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

Side by Side Diff: third_party/WebKit/Source/modules/fetch/FetchManager.cpp

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: fix typo 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/fetch/FetchManager.h" 5 #include "modules/fetch/FetchManager.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include "bindings/core/v8/ExceptionState.h" 8 #include "bindings/core/v8/ExceptionState.h"
9 #include "bindings/core/v8/ScriptPromiseResolver.h" 9 #include "bindings/core/v8/ScriptPromiseResolver.h"
10 #include "bindings/core/v8/ScriptState.h" 10 #include "bindings/core/v8/ScriptState.h"
11 #include "bindings/core/v8/V8ThrowException.h" 11 #include "bindings/core/v8/V8ThrowException.h"
12 #include "core/dom/DOMArrayBuffer.h" 12 #include "core/dom/DOMArrayBuffer.h"
13 #include "core/dom/Document.h" 13 #include "core/dom/Document.h"
14 #include "core/fileapi/Blob.h" 14 #include "core/fileapi/Blob.h"
15 #include "core/frame/Frame.h" 15 #include "core/frame/Frame.h"
16 #include "core/frame/SubresourceIntegrity.h" 16 #include "core/frame/SubresourceIntegrity.h"
17 #include "core/frame/csp/ContentSecurityPolicy.h" 17 #include "core/frame/csp/ContentSecurityPolicy.h"
18 #include "core/inspector/ConsoleMessage.h" 18 #include "core/inspector/ConsoleMessage.h"
19 #include "core/inspector/InspectorInstrumentation.h"
20 #include "core/loader/ThreadableLoader.h" 19 #include "core/loader/ThreadableLoader.h"
21 #include "core/loader/ThreadableLoaderClient.h" 20 #include "core/loader/ThreadableLoaderClient.h"
22 #include "core/page/ChromeClient.h" 21 #include "core/page/ChromeClient.h"
23 #include "core/page/Page.h" 22 #include "core/page/Page.h"
23 #include "core/probe/CoreProbes.h"
24 #include "modules/fetch/Body.h" 24 #include "modules/fetch/Body.h"
25 #include "modules/fetch/BodyStreamBuffer.h" 25 #include "modules/fetch/BodyStreamBuffer.h"
26 #include "modules/fetch/BytesConsumer.h" 26 #include "modules/fetch/BytesConsumer.h"
27 #include "modules/fetch/BytesConsumerForDataConsumerHandle.h" 27 #include "modules/fetch/BytesConsumerForDataConsumerHandle.h"
28 #include "modules/fetch/FetchRequestData.h" 28 #include "modules/fetch/FetchRequestData.h"
29 #include "modules/fetch/FormDataBytesConsumer.h" 29 #include "modules/fetch/FormDataBytesConsumer.h"
30 #include "modules/fetch/Response.h" 30 #include "modules/fetch/Response.h"
31 #include "modules/fetch/ResponseInit.h" 31 #include "modules/fetch/ResponseInit.h"
32 #include "platform/HTTPNames.h" 32 #include "platform/HTTPNames.h"
33 #include "platform/loader/fetch/FetchUtils.h" 33 #include "platform/loader/fetch/FetchUtils.h"
(...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after
932 m_loaders.erase(loader); 932 m_loaders.erase(loader);
933 loader->dispose(); 933 loader->dispose();
934 } 934 }
935 935
936 DEFINE_TRACE(FetchManager) { 936 DEFINE_TRACE(FetchManager) {
937 visitor->trace(m_loaders); 937 visitor->trace(m_loaders);
938 ContextLifecycleObserver::trace(visitor); 938 ContextLifecycleObserver::trace(visitor);
939 } 939 }
940 940
941 } // namespace blink 941 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/eventsource/EventSource.cpp ('k') | third_party/WebKit/Source/modules/fetch/GlobalFetch.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698