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

Side by Side Diff: webkit/plugins/ppapi/webkit_forwarding_impl.cc

Issue 7517020: First pass at removal of unneeded dependencies on skia\ext\platform_canvas.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "webkit/plugins/ppapi/webkit_forwarding_impl.h" 5 #include "webkit/plugins/ppapi/webkit_forwarding_impl.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/debug/trace_event.h" 9 #include "base/debug/trace_event.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "base/string_util.h" 11 #include "base/string_util.h"
12 #include "base/synchronization/waitable_event.h" 12 #include "base/synchronization/waitable_event.h"
13 #include "base/utf_string_conversions.h" 13 #include "base/utf_string_conversions.h"
14 #include "ppapi/c/dev/ppb_font_dev.h" 14 #include "ppapi/c/dev/ppb_font_dev.h"
15 #include "ppapi/c/pp_point.h" 15 #include "ppapi/c/pp_point.h"
16 #include "ppapi/c/pp_rect.h" 16 #include "ppapi/c/pp_rect.h"
17 #include "ppapi/shared_impl/ppapi_preferences.h" 17 #include "ppapi/shared_impl/ppapi_preferences.h"
18 #include "skia/ext/platform_canvas.h" 18 #include "skia/ext/platform_canvas.h"
19 #include "third_party/skia/include/core/SkRect.h"
19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCanvas.h" 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCanvas.h"
20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFont.h" 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFont.h"
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFontDescription.h" 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFontDescription.h"
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRect.h" 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRect.h"
23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFloatPoint.h" 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFloatPoint.h"
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFloatRect.h" 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFloatRect.h"
25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextRun.h" 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextRun.h"
26 #include "webkit/glue/webkit_glue.h" 27 #include "webkit/glue/webkit_glue.h"
27 28
28 using ::ppapi::WebKitForwarding; 29 using ::ppapi::WebKitForwarding;
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 Font** result) { 289 Font** result) {
289 TRACE_EVENT0("ppapi WebKit thread", 290 TRACE_EVENT0("ppapi WebKit thread",
290 "WebKitForwardingImpl::CreateFontForwarding"); 291 "WebKitForwardingImpl::CreateFontForwarding");
291 *result = new FontImpl(desc, desc_face, prefs); 292 *result = new FontImpl(desc, desc_face, prefs);
292 if (event) 293 if (event)
293 event->Signal(); 294 event->Signal();
294 } 295 }
295 296
296 } // namespace ppapi 297 } // namespace ppapi
297 } // namespace webkit 298 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppb_flash_impl_linux.cc ('k') | webkit/tools/test_shell/test_shell_webthemecontrol.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698