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

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

Issue 1922473002: Remove unnecessary ExceptionCode.h inclusion (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 "bindings/core/v8/ExceptionState.h" 7 #include "bindings/core/v8/ExceptionState.h"
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 "bindings/core/v8/V8ThrowException.h" 10 #include "bindings/core/v8/V8ThrowException.h"
11 #include "core/dom/DOMArrayBuffer.h" 11 #include "core/dom/DOMArrayBuffer.h"
12 #include "core/dom/Document.h" 12 #include "core/dom/Document.h"
13 #include "core/dom/ExceptionCode.h"
14 #include "core/fetch/FetchUtils.h" 13 #include "core/fetch/FetchUtils.h"
15 #include "core/fileapi/Blob.h" 14 #include "core/fileapi/Blob.h"
16 #include "core/frame/Frame.h" 15 #include "core/frame/Frame.h"
17 #include "core/frame/SubresourceIntegrity.h" 16 #include "core/frame/SubresourceIntegrity.h"
18 #include "core/frame/csp/ContentSecurityPolicy.h" 17 #include "core/frame/csp/ContentSecurityPolicy.h"
19 #include "core/inspector/ConsoleMessage.h" 18 #include "core/inspector/ConsoleMessage.h"
20 #include "core/inspector/InspectorInstrumentation.h" 19 #include "core/inspector/InspectorInstrumentation.h"
21 #include "core/loader/ThreadableLoader.h" 20 #include "core/loader/ThreadableLoader.h"
22 #include "core/loader/ThreadableLoaderClient.h" 21 #include "core/loader/ThreadableLoaderClient.h"
23 #include "core/page/ChromeClient.h" 22 #include "core/page/ChromeClient.h"
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 loader->dispose(); 738 loader->dispose();
740 } 739 }
741 740
742 DEFINE_TRACE(FetchManager) 741 DEFINE_TRACE(FetchManager)
743 { 742 {
744 visitor->trace(m_loaders); 743 visitor->trace(m_loaders);
745 ContextLifecycleObserver::trace(visitor); 744 ContextLifecycleObserver::trace(visitor);
746 } 745 }
747 746
748 } // namespace blink 747 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/cachestorage/Cache.cpp ('k') | third_party/WebKit/Source/modules/fetch/ResponseTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698