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

Side by Side Diff: third_party/WebKit/Source/core/loader/NavigationScheduler.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) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
5 * (http://www.torchmobile.com/) 5 * (http://www.torchmobile.com/)
6 * Copyright (C) 2009 Adam Barth. All rights reserved. 6 * Copyright (C) 2009 Adam Barth. All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
(...skipping 16 matching lines...) Expand all
27 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 27 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
28 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */ 31 */
32 32
33 #include "core/loader/NavigationScheduler.h" 33 #include "core/loader/NavigationScheduler.h"
34 34
35 #include "bindings/core/v8/ScriptController.h" 35 #include "bindings/core/v8/ScriptController.h"
36 #include "core/events/Event.h" 36 #include "core/events/Event.h"
37 #include "core/fetch/ResourceLoaderOptions.h"
38 #include "core/frame/Deprecation.h" 37 #include "core/frame/Deprecation.h"
39 #include "core/frame/LocalFrame.h" 38 #include "core/frame/LocalFrame.h"
40 #include "core/frame/csp/ContentSecurityPolicy.h" 39 #include "core/frame/csp/ContentSecurityPolicy.h"
41 #include "core/html/HTMLFormElement.h" 40 #include "core/html/HTMLFormElement.h"
42 #include "core/inspector/InspectorInstrumentation.h" 41 #include "core/inspector/InspectorInstrumentation.h"
43 #include "core/loader/DocumentLoadTiming.h" 42 #include "core/loader/DocumentLoadTiming.h"
44 #include "core/loader/DocumentLoader.h" 43 #include "core/loader/DocumentLoader.h"
45 #include "core/loader/FormSubmission.h" 44 #include "core/loader/FormSubmission.h"
46 #include "core/loader/FrameLoadRequest.h" 45 #include "core/loader/FrameLoadRequest.h"
47 #include "core/loader/FrameLoader.h" 46 #include "core/loader/FrameLoader.h"
48 #include "core/loader/FrameLoaderClient.h" 47 #include "core/loader/FrameLoaderClient.h"
49 #include "core/loader/FrameLoaderStateMachine.h" 48 #include "core/loader/FrameLoaderStateMachine.h"
50 #include "core/page/Page.h" 49 #include "core/page/Page.h"
51 #include "platform/Histogram.h" 50 #include "platform/Histogram.h"
52 #include "platform/SharedBuffer.h" 51 #include "platform/SharedBuffer.h"
53 #include "platform/UserGestureIndicator.h" 52 #include "platform/UserGestureIndicator.h"
53 #include "platform/loader/fetch/ResourceLoaderOptions.h"
54 #include "public/platform/Platform.h" 54 #include "public/platform/Platform.h"
55 #include "public/platform/WebCachePolicy.h" 55 #include "public/platform/WebCachePolicy.h"
56 #include "public/platform/WebScheduler.h" 56 #include "public/platform/WebScheduler.h"
57 #include "wtf/CurrentTime.h" 57 #include "wtf/CurrentTime.h"
58 #include "wtf/PtrUtil.h" 58 #include "wtf/PtrUtil.h"
59 #include <memory> 59 #include <memory>
60 60
61 namespace blink { 61 namespace blink {
62 62
63 namespace { 63 namespace {
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 m_navigateTaskHandle.cancel(); 544 m_navigateTaskHandle.cancel();
545 m_redirect.clear(); 545 m_redirect.clear();
546 } 546 }
547 547
548 DEFINE_TRACE(NavigationScheduler) { 548 DEFINE_TRACE(NavigationScheduler) {
549 visitor->trace(m_frame); 549 visitor->trace(m_frame);
550 visitor->trace(m_redirect); 550 visitor->trace(m_redirect);
551 } 551 }
552 552
553 } // namespace blink 553 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698