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

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

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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
« no previous file with comments | « Source/core/dom/DOMImplementation.cpp ('k') | Source/core/editing/EditorCommand.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 #include "core/page/Chrome.h" 152 #include "core/page/Chrome.h"
153 #include "core/page/ChromeClient.h" 153 #include "core/page/ChromeClient.h"
154 #include "core/page/EventHandler.h" 154 #include "core/page/EventHandler.h"
155 #include "core/page/FrameTree.h" 155 #include "core/page/FrameTree.h"
156 #include "core/page/MouseEventWithHitTestResults.h" 156 #include "core/page/MouseEventWithHitTestResults.h"
157 #include "core/page/Page.h" 157 #include "core/page/Page.h"
158 #include "core/page/PageConsole.h" 158 #include "core/page/PageConsole.h"
159 #include "core/page/PointerLockController.h" 159 #include "core/page/PointerLockController.h"
160 #include "core/page/Settings.h" 160 #include "core/page/Settings.h"
161 #include "core/page/scrolling/ScrollingCoordinator.h" 161 #include "core/page/scrolling/ScrollingCoordinator.h"
162 #include "core/platform/ScrollbarTheme.h"
163 #include "core/rendering/FastTextAutosizer.h" 162 #include "core/rendering/FastTextAutosizer.h"
164 #include "core/rendering/HitTestResult.h" 163 #include "core/rendering/HitTestResult.h"
165 #include "core/rendering/RenderView.h" 164 #include "core/rendering/RenderView.h"
166 #include "core/rendering/RenderWidget.h" 165 #include "core/rendering/RenderWidget.h"
167 #include "core/rendering/TextAutosizer.h" 166 #include "core/rendering/TextAutosizer.h"
168 #include "core/svg/SVGDocumentExtensions.h" 167 #include "core/svg/SVGDocumentExtensions.h"
169 #include "core/svg/SVGStyleElement.h" 168 #include "core/svg/SVGStyleElement.h"
170 #include "core/xml/XSLTProcessor.h" 169 #include "core/xml/XSLTProcessor.h"
171 #include "core/xml/parser/XMLDocumentParser.h" 170 #include "core/xml/parser/XMLDocumentParser.h"
172 #include "platform/DateComponents.h" 171 #include "platform/DateComponents.h"
173 #include "platform/Language.h" 172 #include "platform/Language.h"
174 #include "platform/TraceEvent.h" 173 #include "platform/TraceEvent.h"
175 #include "platform/network/HTTPParsers.h" 174 #include "platform/network/HTTPParsers.h"
175 #include "platform/scroll/ScrollbarTheme.h"
176 #include "platform/text/PlatformLocale.h" 176 #include "platform/text/PlatformLocale.h"
177 #include "platform/text/SegmentedString.h" 177 #include "platform/text/SegmentedString.h"
178 #include "platform/weborigin/OriginAccessEntry.h" 178 #include "platform/weborigin/OriginAccessEntry.h"
179 #include "platform/weborigin/SchemeRegistry.h" 179 #include "platform/weborigin/SchemeRegistry.h"
180 #include "platform/weborigin/SecurityOrigin.h" 180 #include "platform/weborigin/SecurityOrigin.h"
181 #include "wtf/CurrentTime.h" 181 #include "wtf/CurrentTime.h"
182 #include "wtf/HashFunctions.h" 182 #include "wtf/HashFunctions.h"
183 #include "wtf/MainThread.h" 183 #include "wtf/MainThread.h"
184 #include "wtf/StdLibExtras.h" 184 #include "wtf/StdLibExtras.h"
185 #include "wtf/TemporaryChange.h" 185 #include "wtf/TemporaryChange.h"
(...skipping 5024 matching lines...) Expand 10 before | Expand all | Expand 10 after
5210 } 5210 }
5211 5211
5212 FastTextAutosizer* Document::fastTextAutosizer() 5212 FastTextAutosizer* Document::fastTextAutosizer()
5213 { 5213 {
5214 if (!m_fastTextAutosizer && RuntimeEnabledFeatures::fastTextAutosizingEnable d()) 5214 if (!m_fastTextAutosizer && RuntimeEnabledFeatures::fastTextAutosizingEnable d())
5215 m_fastTextAutosizer = FastTextAutosizer::create(this); 5215 m_fastTextAutosizer = FastTextAutosizer::create(this);
5216 return m_fastTextAutosizer.get(); 5216 return m_fastTextAutosizer.get();
5217 } 5217 }
5218 5218
5219 } // namespace WebCore 5219 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/dom/DOMImplementation.cpp ('k') | Source/core/editing/EditorCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698