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

Side by Side Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: another try 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) 1998, 1999 Torben Weis <weis@kde.org> 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
3 * 1999 Lars Knoll <knoll@kde.org> 3 * 1999 Lars Knoll <knoll@kde.org>
4 * 1999 Antti Koivisto <koivisto@kde.org> 4 * 1999 Antti Koivisto <koivisto@kde.org>
5 * 2000 Dirk Mueller <mueller@kde.org> 5 * 2000 Dirk Mueller <mueller@kde.org>
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com)
8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
9 * Copyright (C) 2009 Google Inc. All rights reserved. 9 * Copyright (C) 2009 Google Inc. All rights reserved.
10 * 10 *
(...skipping 27 matching lines...) Expand all
38 #include "core/dom/IntersectionObserverController.h" 38 #include "core/dom/IntersectionObserverController.h"
39 #include "core/dom/IntersectionObserverInit.h" 39 #include "core/dom/IntersectionObserverInit.h"
40 #include "core/dom/ResizeObserverController.h" 40 #include "core/dom/ResizeObserverController.h"
41 #include "core/dom/StyleChangeReason.h" 41 #include "core/dom/StyleChangeReason.h"
42 #include "core/dom/TaskRunnerHelper.h" 42 #include "core/dom/TaskRunnerHelper.h"
43 #include "core/editing/EditingUtilities.h" 43 #include "core/editing/EditingUtilities.h"
44 #include "core/editing/FrameSelection.h" 44 #include "core/editing/FrameSelection.h"
45 #include "core/editing/RenderedPosition.h" 45 #include "core/editing/RenderedPosition.h"
46 #include "core/editing/markers/DocumentMarkerController.h" 46 #include "core/editing/markers/DocumentMarkerController.h"
47 #include "core/events/ErrorEvent.h" 47 #include "core/events/ErrorEvent.h"
48 #include "core/fetch/ResourceFetcher.h"
49 #include "core/frame/BrowserControls.h" 48 #include "core/frame/BrowserControls.h"
50 #include "core/frame/EventHandlerRegistry.h" 49 #include "core/frame/EventHandlerRegistry.h"
51 #include "core/frame/FrameHost.h" 50 #include "core/frame/FrameHost.h"
52 #include "core/frame/LocalFrame.h" 51 #include "core/frame/LocalFrame.h"
53 #include "core/frame/Location.h" 52 #include "core/frame/Location.h"
54 #include "core/frame/PageScaleConstraintsSet.h" 53 #include "core/frame/PageScaleConstraintsSet.h"
55 #include "core/frame/PerformanceMonitor.h" 54 #include "core/frame/PerformanceMonitor.h"
56 #include "core/frame/RemoteFrame.h" 55 #include "core/frame/RemoteFrame.h"
57 #include "core/frame/RemoteFrameView.h" 56 #include "core/frame/RemoteFrameView.h"
58 #include "core/frame/Settings.h" 57 #include "core/frame/Settings.h"
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 #include "platform/graphics/GraphicsContext.h" 114 #include "platform/graphics/GraphicsContext.h"
116 #include "platform/graphics/GraphicsLayer.h" 115 #include "platform/graphics/GraphicsLayer.h"
117 #include "platform/graphics/GraphicsLayerDebugInfo.h" 116 #include "platform/graphics/GraphicsLayerDebugInfo.h"
118 #include "platform/graphics/compositing/PaintArtifactCompositor.h" 117 #include "platform/graphics/compositing/PaintArtifactCompositor.h"
119 #include "platform/graphics/paint/CullRect.h" 118 #include "platform/graphics/paint/CullRect.h"
120 #include "platform/graphics/paint/PaintController.h" 119 #include "platform/graphics/paint/PaintController.h"
121 #include "platform/graphics/paint/ScopedPaintChunkProperties.h" 120 #include "platform/graphics/paint/ScopedPaintChunkProperties.h"
122 #include "platform/instrumentation/tracing/TraceEvent.h" 121 #include "platform/instrumentation/tracing/TraceEvent.h"
123 #include "platform/instrumentation/tracing/TracedValue.h" 122 #include "platform/instrumentation/tracing/TracedValue.h"
124 #include "platform/json/JSONValues.h" 123 #include "platform/json/JSONValues.h"
124 #include "platform/loader/fetch/ResourceFetcher.h"
125 #include "platform/scroll/ScrollAnimatorBase.h" 125 #include "platform/scroll/ScrollAnimatorBase.h"
126 #include "platform/scroll/ScrollbarTheme.h" 126 #include "platform/scroll/ScrollbarTheme.h"
127 #include "platform/text/TextStream.h" 127 #include "platform/text/TextStream.h"
128 #include "public/platform/WebDisplayItemList.h" 128 #include "public/platform/WebDisplayItemList.h"
129 #include "wtf/CurrentTime.h" 129 #include "wtf/CurrentTime.h"
130 #include "wtf/PtrUtil.h" 130 #include "wtf/PtrUtil.h"
131 #include "wtf/StdLibExtras.h" 131 #include "wtf/StdLibExtras.h"
132 #include <memory> 132 #include <memory>
133 133
134 // Used to check for dirty layouts violating document lifecycle rules. 134 // Used to check for dirty layouts violating document lifecycle rules.
(...skipping 4926 matching lines...) Expand 10 before | Expand all | Expand 10 after
5061 std::unique_ptr<CompositorAnimationTimeline> timeline) { 5061 std::unique_ptr<CompositorAnimationTimeline> timeline) {
5062 m_animationTimeline = std::move(timeline); 5062 m_animationTimeline = std::move(timeline);
5063 } 5063 }
5064 5064
5065 void FrameView::setAnimationHost( 5065 void FrameView::setAnimationHost(
5066 std::unique_ptr<CompositorAnimationHost> host) { 5066 std::unique_ptr<CompositorAnimationHost> host) {
5067 m_animationHost = std::move(host); 5067 m_animationHost = std::move(host);
5068 } 5068 }
5069 5069
5070 } // namespace blink 5070 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/fileapi/FileReaderLoader.cpp ('k') | third_party/WebKit/Source/core/frame/ImageBitmapTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698