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

Side by Side Diff: Source/web/WebFrameImpl.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/web/WebFontImpl.cpp ('k') | Source/web/WebGlyphCache.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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 #include "core/loader/FrameLoadRequest.h" 149 #include "core/loader/FrameLoadRequest.h"
150 #include "core/loader/FrameLoader.h" 150 #include "core/loader/FrameLoader.h"
151 #include "core/loader/SubstituteData.h" 151 #include "core/loader/SubstituteData.h"
152 #include "core/page/Chrome.h" 152 #include "core/page/Chrome.h"
153 #include "core/page/EventHandler.h" 153 #include "core/page/EventHandler.h"
154 #include "core/page/FocusController.h" 154 #include "core/page/FocusController.h"
155 #include "core/page/FrameTree.h" 155 #include "core/page/FrameTree.h"
156 #include "core/page/Page.h" 156 #include "core/page/Page.h"
157 #include "core/page/PrintContext.h" 157 #include "core/page/PrintContext.h"
158 #include "core/page/Settings.h" 158 #include "core/page/Settings.h"
159 #include "core/platform/ScrollbarTheme.h"
160 #include "core/platform/graphics/FontCache.h"
161 #include "core/platform/graphics/GraphicsContext.h"
162 #include "core/platform/graphics/GraphicsLayerClient.h"
163 #include "core/platform/graphics/skia/SkiaUtils.h"
164 #include "core/rendering/HitTestResult.h" 159 #include "core/rendering/HitTestResult.h"
165 #include "core/rendering/RenderBox.h" 160 #include "core/rendering/RenderBox.h"
166 #include "core/rendering/RenderFrame.h" 161 #include "core/rendering/RenderFrame.h"
167 #include "core/rendering/RenderLayer.h" 162 #include "core/rendering/RenderLayer.h"
168 #include "core/rendering/RenderObject.h" 163 #include "core/rendering/RenderObject.h"
169 #include "core/rendering/RenderTreeAsText.h" 164 #include "core/rendering/RenderTreeAsText.h"
170 #include "core/rendering/RenderView.h" 165 #include "core/rendering/RenderView.h"
171 #include "core/rendering/style/StyleInheritedData.h" 166 #include "core/rendering/style/StyleInheritedData.h"
172 #include "core/timing/Performance.h" 167 #include "core/timing/Performance.h"
173 #include "core/xml/DocumentXPathEvaluator.h" 168 #include "core/xml/DocumentXPathEvaluator.h"
174 #include "core/xml/XPathResult.h" 169 #include "core/xml/XPathResult.h"
175 #include "modules/filesystem/DOMFileSystem.h" 170 #include "modules/filesystem/DOMFileSystem.h"
176 #include "modules/filesystem/DirectoryEntry.h" 171 #include "modules/filesystem/DirectoryEntry.h"
177 #include "modules/filesystem/FileEntry.h" 172 #include "modules/filesystem/FileEntry.h"
178 #include "platform/FileSystemType.h" 173 #include "platform/FileSystemType.h"
179 #include "platform/TraceEvent.h" 174 #include "platform/TraceEvent.h"
180 #include "platform/UserGestureIndicator.h" 175 #include "platform/UserGestureIndicator.h"
181 #include "platform/clipboard/ClipboardUtilities.h" 176 #include "platform/clipboard/ClipboardUtilities.h"
177 #include "platform/fonts/FontCache.h"
178 #include "platform/graphics/GraphicsContext.h"
179 #include "platform/graphics/GraphicsLayerClient.h"
180 #include "platform/graphics/skia/SkiaUtils.h"
182 #include "platform/network/ResourceRequest.h" 181 #include "platform/network/ResourceRequest.h"
182 #include "platform/scroll/ScrollbarTheme.h"
183 #include "platform/scroll/ScrollTypes.h" 183 #include "platform/scroll/ScrollTypes.h"
184 #include "platform/weborigin/KURL.h" 184 #include "platform/weborigin/KURL.h"
185 #include "platform/weborigin/SchemeRegistry.h" 185 #include "platform/weborigin/SchemeRegistry.h"
186 #include "platform/weborigin/SecurityPolicy.h" 186 #include "platform/weborigin/SecurityPolicy.h"
187 #include "public/platform/Platform.h" 187 #include "public/platform/Platform.h"
188 #include "public/platform/WebFileSystem.h" 188 #include "public/platform/WebFileSystem.h"
189 #include "public/platform/WebFloatPoint.h" 189 #include "public/platform/WebFloatPoint.h"
190 #include "public/platform/WebFloatRect.h" 190 #include "public/platform/WebFloatRect.h"
191 #include "public/platform/WebPoint.h" 191 #include "public/platform/WebPoint.h"
192 #include "public/platform/WebRect.h" 192 #include "public/platform/WebRect.h"
(...skipping 2311 matching lines...) Expand 10 before | Expand all | Expand 10 after
2504 2504
2505 // There is a possibility that the frame being detached was the only 2505 // There is a possibility that the frame being detached was the only
2506 // pending one. We need to make sure final replies can be sent. 2506 // pending one. We need to make sure final replies can be sent.
2507 flushCurrentScopingEffort(m_findRequestIdentifier); 2507 flushCurrentScopingEffort(m_findRequestIdentifier);
2508 2508
2509 cancelPendingScopingEffort(); 2509 cancelPendingScopingEffort();
2510 } 2510 }
2511 } 2511 }
2512 2512
2513 } // namespace blink 2513 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebFontImpl.cpp ('k') | Source/web/WebGlyphCache.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698