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

Side by Side Diff: ppapi/proxy/serialized_structs.cc

Issue 6334016: Refactor PPAPI proxy resource handling to maintain which host they came from,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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/proxy/serialized_structs.h ('k') | ppapi/proxy/serialized_var.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "ppapi/proxy/serialized_structs.h" 5 #include "ppapi/proxy/serialized_structs.h"
6 6
7 #include "ppapi/c/dev/ppb_font_dev.h" 7 #include "ppapi/c/dev/ppb_font_dev.h"
8 #include "ppapi/c/pp_rect.h" 8 #include "ppapi/c/pp_rect.h"
9 9
10 namespace pp { 10 namespace pp {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 desc->size = size; 57 desc->size = size;
58 desc->weight = static_cast<PP_FontWeight_Dev>(weight); 58 desc->weight = static_cast<PP_FontWeight_Dev>(weight);
59 desc->italic = italic; 59 desc->italic = italic;
60 desc->small_caps = small_caps; 60 desc->small_caps = small_caps;
61 desc->letter_spacing = letter_spacing; 61 desc->letter_spacing = letter_spacing;
62 desc->word_spacing = word_spacing; 62 desc->word_spacing = word_spacing;
63 } 63 }
64 64
65 PPBFlash_DrawGlyphs_Params::PPBFlash_DrawGlyphs_Params() 65 PPBFlash_DrawGlyphs_Params::PPBFlash_DrawGlyphs_Params()
66 : instance(0), 66 : instance(0),
67 pp_image_data(0),
68 font_desc(), 67 font_desc(),
69 color(0) { 68 color(0) {
70 } 69 }
71 70
72 PPBFlash_DrawGlyphs_Params::~PPBFlash_DrawGlyphs_Params() {} 71 PPBFlash_DrawGlyphs_Params::~PPBFlash_DrawGlyphs_Params() {}
73 72
74 } // namespace proxy 73 } // namespace proxy
75 } // namespace pp 74 } // namespace pp
OLDNEW
« no previous file with comments | « ppapi/proxy/serialized_structs.h ('k') | ppapi/proxy/serialized_var.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698