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

Unified Diff: ppapi/proxy/serialized_structs.cc

Issue 5624002: Move more code from headers to implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 10 years 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698