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

Side by Side Diff: content/common/content_param_traits.h

Issue 1966983003: Generate param traits size methods for IPC files in content/ (and traits it depends on). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix owners Created 4 years, 7 months 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
« no previous file with comments | « content/common/content_message_generator.cc ('k') | content/common/content_param_traits.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // This file is used to define IPC::ParamTraits<> specializations for a number 5 // This file is used to define IPC::ParamTraits<> specializations for a number
6 // of types so that they can be serialized over IPC. IPC::ParamTraits<> 6 // of types so that they can be serialized over IPC. IPC::ParamTraits<>
7 // specializations for basic types (like int and std::string) and types in the 7 // specializations for basic types (like int and std::string) and types in the
8 // 'base' project can be found in ipc/ipc_message_utils.h. This file contains 8 // 'base' project can be found in ipc/ipc_message_utils.h. This file contains
9 // specializations for types that are used by the content code, and which need 9 // specializations for types that are used by the content code, and which need
10 // manual serialization code. This is usually because they're not structs with 10 // manual serialization code. This is usually because they're not structs with
(...skipping 24 matching lines...) Expand all
35 } 35 }
36 static void Log(const param_type& p, std::string* l) { 36 static void Log(const param_type& p, std::string* l) {
37 l->append("<WebCursor>"); 37 l->append("<WebCursor>");
38 } 38 }
39 }; 39 };
40 40
41 typedef const blink::WebInputEvent* WebInputEventPointer; 41 typedef const blink::WebInputEvent* WebInputEventPointer;
42 template <> 42 template <>
43 struct ParamTraits<WebInputEventPointer> { 43 struct ParamTraits<WebInputEventPointer> {
44 typedef WebInputEventPointer param_type; 44 typedef WebInputEventPointer param_type;
45 static void GetSize(base::PickleSizer* s, const param_type& p);
45 static void Write(base::Pickle* m, const param_type& p); 46 static void Write(base::Pickle* m, const param_type& p);
46 // Note: upon read, the event has the lifetime of the message. 47 // Note: upon read, the event has the lifetime of the message.
47 static bool Read(const base::Pickle* m, 48 static bool Read(const base::Pickle* m,
48 base::PickleIterator* iter, 49 base::PickleIterator* iter,
49 param_type* r); 50 param_type* r);
50 static void Log(const param_type& p, std::string* l); 51 static void Log(const param_type& p, std::string* l);
51 }; 52 };
52 53
53 } // namespace IPC 54 } // namespace IPC
54 55
55 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ 56 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_
OLDNEW
« no previous file with comments | « content/common/content_message_generator.cc ('k') | content/common/content_param_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698