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

Side by Side Diff: ppapi/shared_impl/webkit_forwarding.cc

Issue 6981001: Make the Pepper proxy support in-process font rendering. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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
« no previous file with comments | « ppapi/shared_impl/webkit_forwarding.h ('k') | ppapi/tests/test_url_loader.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "ppapi/shared_impl/webkit_forwarding.h"
6
7 namespace pp {
8 namespace shared_impl {
9
10 WebKitForwarding::Font::DrawTextParams::DrawTextParams(
11 skia::PlatformCanvas* destination_arg,
12 const TextRun& text_arg,
13 const PP_Point* position_arg,
14 uint32_t color_arg,
15 const PP_Rect* clip_arg,
16 PP_Bool image_data_is_opaque_arg)
17 : destination(destination_arg),
18 text(text_arg),
19 position(position_arg),
20 color(color_arg),
21 clip(clip_arg),
22 image_data_is_opaque(image_data_is_opaque_arg) {
23 }
24
25 WebKitForwarding::Font::DrawTextParams::~DrawTextParams() {
26 }
27
28 WebKitForwarding::Font::~Font() {
29 }
30
31 WebKitForwarding::~WebKitForwarding() {
32 }
33
34 } // namespace shared_impl
35 } // namespace pp
36
OLDNEW
« no previous file with comments | « ppapi/shared_impl/webkit_forwarding.h ('k') | ppapi/tests/test_url_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698