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

Side by Side Diff: mojo/public/bindings/generators/cpp_templates/params_serialization

Issue 65933002: Mojo: Unify the disparate source and header files into 3 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Mistaken /n's Created 7 years, 1 month 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
OLDNEW
(Empty)
1 template <>
2 class ObjectTraits<sample::Service_Frobinate_Params> {
3 public:
4 static void EncodePointersAndHandles(
5 $CLASS* $NAME,
6 std::vector<Handle>* handles) {
7 $ENCODES
8 $ENCODE_HANDLES
9 }
10
11 static bool DecodePointersAndHandles(
12 $CLASS* $NAME,
13 const Message& message) {
14 $DECODES
15 $DECODE_HANDLES
16 return true;
17 }
18 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698