OLD | NEW |
| (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 ppapi { | |
8 | |
9 WebKitForwarding::Font::DrawTextParams::DrawTextParams( | |
10 skia::PlatformCanvas* destination_arg, | |
11 const TextRun& text_arg, | |
12 const PP_Point* position_arg, | |
13 uint32_t color_arg, | |
14 const PP_Rect* clip_arg, | |
15 PP_Bool image_data_is_opaque_arg) | |
16 : destination(destination_arg), | |
17 text(text_arg), | |
18 position(position_arg), | |
19 color(color_arg), | |
20 clip(clip_arg), | |
21 image_data_is_opaque(image_data_is_opaque_arg) { | |
22 } | |
23 | |
24 WebKitForwarding::Font::DrawTextParams::~DrawTextParams() { | |
25 } | |
26 | |
27 WebKitForwarding::Font::~Font() { | |
28 } | |
29 | |
30 WebKitForwarding::~WebKitForwarding() { | |
31 } | |
32 | |
33 } // namespace ppapi | |
34 | |
OLD | NEW |