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

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

Issue 9360045: Rename PPB_Font to PPB_BrowserFont_Trusted. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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_browser_font.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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
OLDNEW
« no previous file with comments | « ppapi/shared_impl/webkit_forwarding.h ('k') | ppapi/tests/test_browser_font.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698