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 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 |
OLD | NEW |