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

Unified Diff: ppapi/proxy/serialized_structs.h

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.h
diff --git a/ppapi/proxy/serialized_structs.h b/ppapi/proxy/serialized_structs.h
index 49fc222c4e655ca9185a5f381e4c55f5fe330c90..d90926b9cdba3df3e9176e0898ebdde9d3dfd363 100644
--- a/ppapi/proxy/serialized_structs.h
+++ b/ppapi/proxy/serialized_structs.h
@@ -24,6 +24,9 @@ class Dispatcher;
// PP_FontDescript_Dev has to be redefined with a SerializedVar in place of
// the PP_Var used for the face name.
struct SerializedFontDescription {
+ SerializedFontDescription();
+ ~SerializedFontDescription();
+
// Converts a PP_FontDescription_Dev to a SerializedFontDescription.
//
// If source_owns_ref is true, the reference owned by the
@@ -80,6 +83,9 @@ struct PPBFont_DrawTextAt_Params {
};
struct PPBFlash_DrawGlyphs_Params {
+ PPBFlash_DrawGlyphs_Params();
+ ~PPBFlash_DrawGlyphs_Params();
+
PP_Resource pp_image_data;
SerializedFontDescription font_desc;
uint32_t color;

Powered by Google App Engine
This is Rietveld 408576698