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

Side by Side Diff: Source/core/dom/Document.cpp

Issue 23623012: Move TextResourceDecoder from loader/ to fetch/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
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, 2011, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved.
9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 #include "core/dom/TouchList.h" 93 #include "core/dom/TouchList.h"
94 #include "core/dom/TransformSource.h" 94 #include "core/dom/TransformSource.h"
95 #include "core/dom/TreeWalker.h" 95 #include "core/dom/TreeWalker.h"
96 #include "core/dom/UserActionElementSet.h" 96 #include "core/dom/UserActionElementSet.h"
97 #include "core/dom/VisitedLinkState.h" 97 #include "core/dom/VisitedLinkState.h"
98 #include "core/dom/shadow/ElementShadow.h" 98 #include "core/dom/shadow/ElementShadow.h"
99 #include "core/dom/shadow/ShadowRoot.h" 99 #include "core/dom/shadow/ShadowRoot.h"
100 #include "core/editing/Editor.h" 100 #include "core/editing/Editor.h"
101 #include "core/editing/FrameSelection.h" 101 #include "core/editing/FrameSelection.h"
102 #include "core/fetch/ResourceFetcher.h" 102 #include "core/fetch/ResourceFetcher.h"
103 #include "core/fetch/TextResourceDecoder.h"
103 #include "core/html/FormController.h" 104 #include "core/html/FormController.h"
104 #include "core/html/HTMLAllCollection.h" 105 #include "core/html/HTMLAllCollection.h"
105 #include "core/html/HTMLAnchorElement.h" 106 #include "core/html/HTMLAnchorElement.h"
106 #include "core/html/HTMLCanvasElement.h" 107 #include "core/html/HTMLCanvasElement.h"
107 #include "core/html/HTMLCollection.h" 108 #include "core/html/HTMLCollection.h"
108 #include "core/html/HTMLDialogElement.h" 109 #include "core/html/HTMLDialogElement.h"
109 #include "core/html/HTMLDocument.h" 110 #include "core/html/HTMLDocument.h"
110 #include "core/html/HTMLFrameOwnerElement.h" 111 #include "core/html/HTMLFrameOwnerElement.h"
111 #include "core/html/HTMLHeadElement.h" 112 #include "core/html/HTMLHeadElement.h"
112 #include "core/html/HTMLHtmlElement.h" 113 #include "core/html/HTMLHtmlElement.h"
(...skipping 11 matching lines...) Expand all
124 #include "core/html/parser/NestingLevelIncrementer.h" 125 #include "core/html/parser/NestingLevelIncrementer.h"
125 #include "core/inspector/InspectorCounters.h" 126 #include "core/inspector/InspectorCounters.h"
126 #include "core/inspector/InspectorInstrumentation.h" 127 #include "core/inspector/InspectorInstrumentation.h"
127 #include "core/inspector/ScriptCallStack.h" 128 #include "core/inspector/ScriptCallStack.h"
128 #include "core/loader/CookieJar.h" 129 #include "core/loader/CookieJar.h"
129 #include "core/loader/DocumentLoader.h" 130 #include "core/loader/DocumentLoader.h"
130 #include "core/loader/FrameLoader.h" 131 #include "core/loader/FrameLoader.h"
131 #include "core/loader/FrameLoaderClient.h" 132 #include "core/loader/FrameLoaderClient.h"
132 #include "core/loader/ImageLoader.h" 133 #include "core/loader/ImageLoader.h"
133 #include "core/loader/Prerenderer.h" 134 #include "core/loader/Prerenderer.h"
134 #include "core/loader/TextResourceDecoder.h"
135 #include "core/loader/appcache/ApplicationCacheHost.h" 135 #include "core/loader/appcache/ApplicationCacheHost.h"
136 #include "core/page/Chrome.h" 136 #include "core/page/Chrome.h"
137 #include "core/page/ChromeClient.h" 137 #include "core/page/ChromeClient.h"
138 #include "core/page/ContentSecurityPolicy.h" 138 #include "core/page/ContentSecurityPolicy.h"
139 #include "core/page/DOMSecurityPolicy.h" 139 #include "core/page/DOMSecurityPolicy.h"
140 #include "core/page/DOMWindow.h" 140 #include "core/page/DOMWindow.h"
141 #include "core/page/EventHandler.h" 141 #include "core/page/EventHandler.h"
142 #include "core/page/Frame.h" 142 #include "core/page/Frame.h"
143 #include "core/page/FrameTree.h" 143 #include "core/page/FrameTree.h"
144 #include "core/page/FrameView.h" 144 #include "core/page/FrameView.h"
(...skipping 5149 matching lines...) Expand 10 before | Expand all | Expand 10 after
5294 { 5294 {
5295 return DocumentLifecycleNotifier::create(this); 5295 return DocumentLifecycleNotifier::create(this);
5296 } 5296 }
5297 5297
5298 DocumentLifecycleNotifier* Document::lifecycleNotifier() 5298 DocumentLifecycleNotifier* Document::lifecycleNotifier()
5299 { 5299 {
5300 return static_cast<DocumentLifecycleNotifier*>(ScriptExecutionContext::lifec ycleNotifier()); 5300 return static_cast<DocumentLifecycleNotifier*>(ScriptExecutionContext::lifec ycleNotifier());
5301 } 5301 }
5302 5302
5303 } // namespace WebCore 5303 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/DecodedDataDocumentParser.cpp ('k') | Source/core/fetch/CSSStyleSheetResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698