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

Side by Side Diff: third_party/WebKit/Source/core/page/Page.cpp

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: another try Created 3 years, 10 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, 2011, 2012, 2013 Apple Inc. All 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All
3 * Rights Reserved. 3 * Rights Reserved.
4 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. 4 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved.
5 * (http://www.torchmobile.com/) 5 * (http://www.torchmobile.com/)
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 12 matching lines...) Expand all
23 23
24 #include "bindings/core/v8/ScriptController.h" 24 #include "bindings/core/v8/ScriptController.h"
25 #include "core/css/resolver/ViewportStyleResolver.h" 25 #include "core/css/resolver/ViewportStyleResolver.h"
26 #include "core/dom/ClientRectList.h" 26 #include "core/dom/ClientRectList.h"
27 #include "core/dom/StyleChangeReason.h" 27 #include "core/dom/StyleChangeReason.h"
28 #include "core/dom/StyleEngine.h" 28 #include "core/dom/StyleEngine.h"
29 #include "core/dom/VisitedLinkState.h" 29 #include "core/dom/VisitedLinkState.h"
30 #include "core/editing/DragCaretController.h" 30 #include "core/editing/DragCaretController.h"
31 #include "core/editing/markers/DocumentMarkerController.h" 31 #include "core/editing/markers/DocumentMarkerController.h"
32 #include "core/events/Event.h" 32 #include "core/events/Event.h"
33 #include "core/fetch/ResourceFetcher.h"
34 #include "core/frame/DOMTimer.h" 33 #include "core/frame/DOMTimer.h"
35 #include "core/frame/FrameConsole.h" 34 #include "core/frame/FrameConsole.h"
36 #include "core/frame/FrameHost.h" 35 #include "core/frame/FrameHost.h"
37 #include "core/frame/FrameView.h" 36 #include "core/frame/FrameView.h"
38 #include "core/frame/RemoteFrame.h" 37 #include "core/frame/RemoteFrame.h"
39 #include "core/frame/RemoteFrameView.h" 38 #include "core/frame/RemoteFrameView.h"
40 #include "core/frame/Settings.h" 39 #include "core/frame/Settings.h"
41 #include "core/frame/VisualViewport.h" 40 #include "core/frame/VisualViewport.h"
42 #include "core/html/HTMLMediaElement.h" 41 #include "core/html/HTMLMediaElement.h"
43 #include "core/inspector/ConsoleMessageStorage.h" 42 #include "core/inspector/ConsoleMessageStorage.h"
44 #include "core/inspector/InspectorInstrumentation.h" 43 #include "core/inspector/InspectorInstrumentation.h"
45 #include "core/layout/TextAutosizer.h" 44 #include "core/layout/TextAutosizer.h"
46 #include "core/page/AutoscrollController.h" 45 #include "core/page/AutoscrollController.h"
47 #include "core/page/ChromeClient.h" 46 #include "core/page/ChromeClient.h"
48 #include "core/page/ContextMenuController.h" 47 #include "core/page/ContextMenuController.h"
49 #include "core/page/DragController.h" 48 #include "core/page/DragController.h"
50 #include "core/page/FocusController.h" 49 #include "core/page/FocusController.h"
51 #include "core/page/PointerLockController.h" 50 #include "core/page/PointerLockController.h"
52 #include "core/page/ScopedPageSuspender.h" 51 #include "core/page/ScopedPageSuspender.h"
53 #include "core/page/ValidationMessageClient.h" 52 #include "core/page/ValidationMessageClient.h"
54 #include "core/page/scrolling/ScrollingCoordinator.h" 53 #include "core/page/scrolling/ScrollingCoordinator.h"
55 #include "core/paint/PaintLayer.h" 54 #include "core/paint/PaintLayer.h"
56 #include "platform/WebFrameScheduler.h" 55 #include "platform/WebFrameScheduler.h"
57 #include "platform/graphics/GraphicsLayer.h" 56 #include "platform/graphics/GraphicsLayer.h"
57 #include "platform/loader/fetch/ResourceFetcher.h"
58 #include "platform/plugins/PluginData.h" 58 #include "platform/plugins/PluginData.h"
59 #include "public/platform/Platform.h" 59 #include "public/platform/Platform.h"
60 60
61 namespace blink { 61 namespace blink {
62 62
63 // Set of all live pages; includes internal Page objects that are 63 // Set of all live pages; includes internal Page objects that are
64 // not observable from scripts. 64 // not observable from scripts.
65 static Page::PageSet& allPages() { 65 static Page::PageSet& allPages() {
66 DEFINE_STATIC_LOCAL(Page::PageSet, pages, ()); 66 DEFINE_STATIC_LOCAL(Page::PageSet, pages, ());
67 return pages; 67 return pages;
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 : chromeClient(nullptr), 543 : chromeClient(nullptr),
544 contextMenuClient(nullptr), 544 contextMenuClient(nullptr),
545 editorClient(nullptr), 545 editorClient(nullptr),
546 spellCheckerClient(nullptr) {} 546 spellCheckerClient(nullptr) {}
547 547
548 Page::PageClients::~PageClients() {} 548 Page::PageClients::~PageClients() {}
549 549
550 template class CORE_TEMPLATE_EXPORT Supplement<Page>; 550 template class CORE_TEMPLATE_EXPORT Supplement<Page>;
551 551
552 } // namespace blink 552 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698