OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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_file_info.h" | 8 #include "ppapi/c/pp_file_info.h" |
9 #include "ppapi/c/pp_rect.h" | 9 #include "ppapi/c/pp_rect.h" |
10 | 10 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 PPBFlash_DrawGlyphs_Params::PPBFlash_DrawGlyphs_Params() | 66 PPBFlash_DrawGlyphs_Params::PPBFlash_DrawGlyphs_Params() |
67 : instance(0), | 67 : instance(0), |
68 font_desc(), | 68 font_desc(), |
69 color(0) { | 69 color(0) { |
70 clip.point.x = 0; | 70 clip.point.x = 0; |
71 clip.point.y = 0; | 71 clip.point.y = 0; |
72 clip.size.height = 0; | 72 clip.size.height = 0; |
73 clip.size.width = 0; | 73 clip.size.width = 0; |
74 position.x = 0; | 74 position.x = 0; |
75 position.y = 0; | 75 position.y = 0; |
| 76 allow_subpixel_aa = PP_FALSE; |
76 } | 77 } |
77 | 78 |
78 PPBFlash_DrawGlyphs_Params::~PPBFlash_DrawGlyphs_Params() {} | 79 PPBFlash_DrawGlyphs_Params::~PPBFlash_DrawGlyphs_Params() {} |
79 | 80 |
80 } // namespace proxy | 81 } // namespace proxy |
81 } // namespace ppapi | 82 } // namespace ppapi |
OLD | NEW |