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

Side by Side Diff: third_party/WebKit/Source/core/frame/LocalDOMWindow.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, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "core/dom/SandboxFlags.h" 43 #include "core/dom/SandboxFlags.h"
44 #include "core/dom/TaskRunnerHelper.h" 44 #include "core/dom/TaskRunnerHelper.h"
45 #include "core/dom/custom/CustomElementRegistry.h" 45 #include "core/dom/custom/CustomElementRegistry.h"
46 #include "core/editing/Editor.h" 46 #include "core/editing/Editor.h"
47 #include "core/events/DOMWindowEventQueue.h" 47 #include "core/events/DOMWindowEventQueue.h"
48 #include "core/events/HashChangeEvent.h" 48 #include "core/events/HashChangeEvent.h"
49 #include "core/events/MessageEvent.h" 49 #include "core/events/MessageEvent.h"
50 #include "core/events/PageTransitionEvent.h" 50 #include "core/events/PageTransitionEvent.h"
51 #include "core/events/PopStateEvent.h" 51 #include "core/events/PopStateEvent.h"
52 #include "core/events/ScopedEventQueue.h" 52 #include "core/events/ScopedEventQueue.h"
53 #include "core/fetch/ResourceFetcher.h"
54 #include "core/frame/BarProp.h" 53 #include "core/frame/BarProp.h"
55 #include "core/frame/DOMVisualViewport.h" 54 #include "core/frame/DOMVisualViewport.h"
56 #include "core/frame/DOMWindowProperty.h" 55 #include "core/frame/DOMWindowProperty.h"
57 #include "core/frame/EventHandlerRegistry.h" 56 #include "core/frame/EventHandlerRegistry.h"
58 #include "core/frame/FrameConsole.h" 57 #include "core/frame/FrameConsole.h"
59 #include "core/frame/FrameView.h" 58 #include "core/frame/FrameView.h"
60 #include "core/frame/History.h" 59 #include "core/frame/History.h"
61 #include "core/frame/LocalFrame.h" 60 #include "core/frame/LocalFrame.h"
62 #include "core/frame/Navigator.h" 61 #include "core/frame/Navigator.h"
63 #include "core/frame/Screen.h" 62 #include "core/frame/Screen.h"
(...skipping 12 matching lines...) Expand all
76 #include "core/loader/appcache/ApplicationCache.h" 75 #include "core/loader/appcache/ApplicationCache.h"
77 #include "core/page/ChromeClient.h" 76 #include "core/page/ChromeClient.h"
78 #include "core/page/CreateWindow.h" 77 #include "core/page/CreateWindow.h"
79 #include "core/page/Page.h" 78 #include "core/page/Page.h"
80 #include "core/page/WindowFeatures.h" 79 #include "core/page/WindowFeatures.h"
81 #include "core/page/scrolling/ScrollingCoordinator.h" 80 #include "core/page/scrolling/ScrollingCoordinator.h"
82 #include "core/timing/DOMWindowPerformance.h" 81 #include "core/timing/DOMWindowPerformance.h"
83 #include "core/timing/Performance.h" 82 #include "core/timing/Performance.h"
84 #include "platform/EventDispatchForbiddenScope.h" 83 #include "platform/EventDispatchForbiddenScope.h"
85 #include "platform/WebFrameScheduler.h" 84 #include "platform/WebFrameScheduler.h"
85 #include "platform/loader/fetch/ResourceFetcher.h"
86 #include "platform/weborigin/SecurityOrigin.h" 86 #include "platform/weborigin/SecurityOrigin.h"
87 #include "platform/weborigin/Suborigin.h" 87 #include "platform/weborigin/Suborigin.h"
88 #include "public/platform/Platform.h" 88 #include "public/platform/Platform.h"
89 #include "public/platform/WebScreenInfo.h" 89 #include "public/platform/WebScreenInfo.h"
90 #include <memory> 90 #include <memory>
91 91
92 namespace blink { 92 namespace blink {
93 93
94 // Timeout for link preloads to be used after window.onload 94 // Timeout for link preloads to be used after window.onload
95 static const int unusedPreloadTimeoutInSeconds = 3; 95 static const int unusedPreloadTimeoutInSeconds = 3;
(...skipping 1533 matching lines...) Expand 10 before | Expand all | Expand 10 after
1629 DOMWindow::trace(visitor); 1629 DOMWindow::trace(visitor);
1630 Supplementable<LocalDOMWindow>::trace(visitor); 1630 Supplementable<LocalDOMWindow>::trace(visitor);
1631 } 1631 }
1632 1632
1633 DEFINE_TRACE_WRAPPERS(LocalDOMWindow) { 1633 DEFINE_TRACE_WRAPPERS(LocalDOMWindow) {
1634 visitor->traceWrappers(m_customElements); 1634 visitor->traceWrappers(m_customElements);
1635 DOMWindow::traceWrappers(visitor); 1635 DOMWindow::traceWrappers(visitor);
1636 } 1636 }
1637 1637
1638 } // namespace blink 1638 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698