Index: ppapi/proxy/serialized_structs.cc |
diff --git a/ppapi/proxy/serialized_structs.cc b/ppapi/proxy/serialized_structs.cc |
index fa71f713bee9a82722b3a9decba12b0459d7de82..ab33bab9bca3b0eb29ae86628db0acb826d04937 100644 |
--- a/ppapi/proxy/serialized_structs.cc |
+++ b/ppapi/proxy/serialized_structs.cc |
@@ -10,6 +10,19 @@ |
namespace pp { |
namespace proxy { |
+SerializedFontDescription::SerializedFontDescription() |
+ : face(), |
+ family(0), |
+ size(0), |
+ weight(0), |
+ italic(PP_FALSE), |
+ small_caps(PP_FALSE), |
+ letter_spacing(0), |
+ word_spacing(0) { |
+} |
+ |
+SerializedFontDescription::~SerializedFontDescription() {} |
+ |
void SerializedFontDescription::SetFromPPFontDescription( |
Dispatcher* dispatcher, |
const PP_FontDescription_Dev& desc, |
@@ -49,5 +62,13 @@ void SerializedFontDescription::SetToPPFontDescription( |
desc->word_spacing = word_spacing; |
} |
+PPBFlash_DrawGlyphs_Params::PPBFlash_DrawGlyphs_Params() |
+ : pp_image_data(0), |
+ font_desc(), |
+ color(0) { |
+} |
+ |
+PPBFlash_DrawGlyphs_Params::~PPBFlash_DrawGlyphs_Params() {} |
+ |
} // namespace proxy |
} // namespace pp |