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

Side by Side Diff: third_party/WebKit/Source/core/dom/Document.h

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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All
7 * rights reserved. 7 * rights reserved.
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
9 * (http://www.torchmobile.com/) 9 * (http://www.torchmobile.com/)
10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "core/dom/MutationObserver.h" 43 #include "core/dom/MutationObserver.h"
44 #include "core/dom/StyleReattachData.h" 44 #include "core/dom/StyleReattachData.h"
45 #include "core/dom/SynchronousMutationNotifier.h" 45 #include "core/dom/SynchronousMutationNotifier.h"
46 #include "core/dom/SynchronousMutationObserver.h" 46 #include "core/dom/SynchronousMutationObserver.h"
47 #include "core/dom/Text.h" 47 #include "core/dom/Text.h"
48 #include "core/dom/TextLinkColors.h" 48 #include "core/dom/TextLinkColors.h"
49 #include "core/dom/TreeScope.h" 49 #include "core/dom/TreeScope.h"
50 #include "core/dom/UserActionElementSet.h" 50 #include "core/dom/UserActionElementSet.h"
51 #include "core/dom/ViewportDescription.h" 51 #include "core/dom/ViewportDescription.h"
52 #include "core/dom/custom/V0CustomElement.h" 52 #include "core/dom/custom/V0CustomElement.h"
53 #include "core/fetch/ClientHintsPreferences.h"
54 #include "core/frame/DOMTimerCoordinator.h" 53 #include "core/frame/DOMTimerCoordinator.h"
55 #include "core/frame/HostsUsingFeatures.h" 54 #include "core/frame/HostsUsingFeatures.h"
56 #include "core/html/parser/ParserSynchronizationPolicy.h" 55 #include "core/html/parser/ParserSynchronizationPolicy.h"
57 #include "core/page/PageVisibilityState.h" 56 #include "core/page/PageVisibilityState.h"
58 #include "platform/Length.h" 57 #include "platform/Length.h"
59 #include "platform/Timer.h" 58 #include "platform/Timer.h"
60 #include "platform/WebTaskRunner.h" 59 #include "platform/WebTaskRunner.h"
60 #include "platform/loader/fetch/ClientHintsPreferences.h"
61 #include "platform/scroll/ScrollTypes.h" 61 #include "platform/scroll/ScrollTypes.h"
62 #include "platform/weborigin/KURL.h" 62 #include "platform/weborigin/KURL.h"
63 #include "platform/weborigin/ReferrerPolicy.h" 63 #include "platform/weborigin/ReferrerPolicy.h"
64 #include "public/platform/WebFocusType.h" 64 #include "public/platform/WebFocusType.h"
65 #include "public/platform/WebInsecureRequestPolicy.h" 65 #include "public/platform/WebInsecureRequestPolicy.h"
66 #include "public/platform/site_engagement.mojom-blink.h" 66 #include "public/platform/site_engagement.mojom-blink.h"
67 #include "wtf/Compiler.h" 67 #include "wtf/Compiler.h"
68 #include "wtf/HashSet.h" 68 #include "wtf/HashSet.h"
69 #include "wtf/PassRefPtr.h" 69 #include "wtf/PassRefPtr.h"
70 #include <memory> 70 #include <memory>
(...skipping 1652 matching lines...) Expand 10 before | Expand all | Expand 10 after
1723 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1723 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1724 1724
1725 } // namespace blink 1725 } // namespace blink
1726 1726
1727 #ifndef NDEBUG 1727 #ifndef NDEBUG
1728 // Outside the WebCore namespace for ease of invocation from gdb. 1728 // Outside the WebCore namespace for ease of invocation from gdb.
1729 CORE_EXPORT void showLiveDocumentInstances(); 1729 CORE_EXPORT void showLiveDocumentInstances();
1730 #endif 1730 #endif
1731 1731
1732 #endif // Document_h 1732 #endif // Document_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698