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

Side by Side Diff: third_party/WebKit/Source/core/frame/LocalFrame.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) 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 Simon Hausmann <hausmann@kde.org> 5 * 2000 Simon Hausmann <hausmann@kde.org>
6 * 2000 Stefan Schimanski <1Stein@gmx.de> 6 * 2000 Stefan Schimanski <1Stein@gmx.de>
7 * 2001 George Staikos <staikos@kde.org> 7 * 2001 George Staikos <staikos@kde.org>
8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
9 * rights reserved. 9 * rights reserved.
10 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> 10 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com>
(...skipping 25 matching lines...) Expand all
36 #include "core/dom/DocumentType.h" 36 #include "core/dom/DocumentType.h"
37 #include "core/dom/StyleChangeReason.h" 37 #include "core/dom/StyleChangeReason.h"
38 #include "core/editing/EditingUtilities.h" 38 #include "core/editing/EditingUtilities.h"
39 #include "core/editing/Editor.h" 39 #include "core/editing/Editor.h"
40 #include "core/editing/FrameSelection.h" 40 #include "core/editing/FrameSelection.h"
41 #include "core/editing/InputMethodController.h" 41 #include "core/editing/InputMethodController.h"
42 #include "core/editing/serializers/Serialization.h" 42 #include "core/editing/serializers/Serialization.h"
43 #include "core/editing/spellcheck/IdleSpellCheckCallback.h" 43 #include "core/editing/spellcheck/IdleSpellCheckCallback.h"
44 #include "core/editing/spellcheck/SpellChecker.h" 44 #include "core/editing/spellcheck/SpellChecker.h"
45 #include "core/events/Event.h" 45 #include "core/events/Event.h"
46 #include "core/fetch/ResourceFetcher.h"
47 #include "core/frame/EventHandlerRegistry.h" 46 #include "core/frame/EventHandlerRegistry.h"
48 #include "core/frame/FrameConsole.h" 47 #include "core/frame/FrameConsole.h"
49 #include "core/frame/FrameHost.h" 48 #include "core/frame/FrameHost.h"
50 #include "core/frame/FrameView.h" 49 #include "core/frame/FrameView.h"
51 #include "core/frame/LocalDOMWindow.h" 50 #include "core/frame/LocalDOMWindow.h"
52 #include "core/frame/PerformanceMonitor.h" 51 #include "core/frame/PerformanceMonitor.h"
53 #include "core/frame/Settings.h" 52 #include "core/frame/Settings.h"
54 #include "core/frame/VisualViewport.h" 53 #include "core/frame/VisualViewport.h"
55 #include "core/html/HTMLFrameElementBase.h" 54 #include "core/html/HTMLFrameElementBase.h"
56 #include "core/html/HTMLPlugInElement.h" 55 #include "core/html/HTMLPlugInElement.h"
(...skipping 24 matching lines...) Expand all
81 #include "platform/RuntimeEnabledFeatures.h" 80 #include "platform/RuntimeEnabledFeatures.h"
82 #include "platform/ScriptForbiddenScope.h" 81 #include "platform/ScriptForbiddenScope.h"
83 #include "platform/WebFrameScheduler.h" 82 #include "platform/WebFrameScheduler.h"
84 #include "platform/graphics/GraphicsContext.h" 83 #include "platform/graphics/GraphicsContext.h"
85 #include "platform/graphics/StaticBitmapImage.h" 84 #include "platform/graphics/StaticBitmapImage.h"
86 #include "platform/graphics/paint/ClipRecorder.h" 85 #include "platform/graphics/paint/ClipRecorder.h"
87 #include "platform/graphics/paint/PaintController.h" 86 #include "platform/graphics/paint/PaintController.h"
88 #include "platform/graphics/paint/SkPictureBuilder.h" 87 #include "platform/graphics/paint/SkPictureBuilder.h"
89 #include "platform/graphics/paint/TransformDisplayItem.h" 88 #include "platform/graphics/paint/TransformDisplayItem.h"
90 #include "platform/json/JSONValues.h" 89 #include "platform/json/JSONValues.h"
90 #include "platform/loader/fetch/ResourceFetcher.h"
91 #include "platform/plugins/PluginData.h" 91 #include "platform/plugins/PluginData.h"
92 #include "platform/text/TextStream.h" 92 #include "platform/text/TextStream.h"
93 #include "public/platform/InterfaceProvider.h" 93 #include "public/platform/InterfaceProvider.h"
94 #include "public/platform/InterfaceRegistry.h" 94 #include "public/platform/InterfaceRegistry.h"
95 #include "public/platform/WebScreenInfo.h" 95 #include "public/platform/WebScreenInfo.h"
96 #include "public/platform/WebViewScheduler.h" 96 #include "public/platform/WebViewScheduler.h"
97 #include "third_party/skia/include/core/SkImage.h" 97 #include "third_party/skia/include/core/SkImage.h"
98 #include "third_party/skia/include/core/SkSurface.h" 98 #include "third_party/skia/include/core/SkSurface.h"
99 #include "wtf/PtrUtil.h" 99 #include "wtf/PtrUtil.h"
100 #include "wtf/StdLibExtras.h" 100 #include "wtf/StdLibExtras.h"
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after
943 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext()) 943 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext())
944 m_frame->client()->frameBlameContext()->Enter(); 944 m_frame->client()->frameBlameContext()->Enter();
945 } 945 }
946 946
947 ScopedFrameBlamer::~ScopedFrameBlamer() { 947 ScopedFrameBlamer::~ScopedFrameBlamer() {
948 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext()) 948 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext())
949 m_frame->client()->frameBlameContext()->Leave(); 949 m_frame->client()->frameBlameContext()->Leave();
950 } 950 }
951 951
952 } // namespace blink 952 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698