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

Side by Side Diff: content/public/common/common_param_traits.h

Issue 10577040: Generate param traits even when shared by mutliple message files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 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 | Annotate | Revision Log
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
11 // public members, or because the same type is being used in multiple 11 // public members, or because the same type is being used in multiple
12 // *_messages.h headers. 12 // *_messages.h headers.
13 13
14 #ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ 14 #ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_
15 #define CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ 15 #define CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_
16 #pragma once 16 #pragma once
17 17
18 #include "base/memory/ref_counted.h" 18 #include "base/memory/ref_counted.h"
19 #include "content/common/content_export.h" 19 #include "content/common/content_export.h"
20 #include "content/public/common/console_message_level.h" 20 #include "content/public/common/common_param_traits_macros.h"
21 #include "content/public/common/page_transition_types.h" 21 #include "content/public/common/page_transition_types.h"
22 #include "content/public/common/security_style.h" 22 #include "content/public/common/security_style.h"
23 #include "googleurl/src/gurl.h" 23 #include "googleurl/src/gurl.h"
24 #include "ipc/ipc_message_utils.h" 24 #include "ipc/ipc_message_utils.h"
25 #include "net/base/ip_endpoint.h" 25 #include "net/base/ip_endpoint.h"
26 #include "net/url_request/url_request_status.h" 26 #include "net/url_request/url_request_status.h"
27 #include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h " 27 #include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h "
28 #include "ui/gfx/native_widget_types.h" 28 #include "ui/gfx/native_widget_types.h"
29 #include "ui/surface/transport_dib.h" 29 #include "ui/surface/transport_dib.h"
30 #include "webkit/glue/resource_type.h"
31 30
32 class SkBitmap; 31 class SkBitmap;
33 32
34 namespace content { 33 namespace content {
35 struct Referrer; 34 struct Referrer;
36 } 35 }
37 36
38 namespace gfx { 37 namespace gfx {
39 class Point; 38 class Point;
40 class Rect; 39 class Rect;
(...skipping 14 matching lines...) Expand all
55 54
56 template <> 55 template <>
57 struct CONTENT_EXPORT ParamTraits<GURL> { 56 struct CONTENT_EXPORT ParamTraits<GURL> {
58 typedef GURL param_type; 57 typedef GURL param_type;
59 static void Write(Message* m, const param_type& p); 58 static void Write(Message* m, const param_type& p);
60 static bool Read(const Message* m, PickleIterator* iter, param_type* p); 59 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
61 static void Log(const param_type& p, std::string* l); 60 static void Log(const param_type& p, std::string* l);
62 }; 61 };
63 62
64 template <> 63 template <>
65 struct ParamTraits<ResourceType::Type> {
66 typedef ResourceType::Type param_type;
67 static void Write(Message* m, const param_type& p);
68 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
69 static void Log(const param_type& p, std::string* l);
70 };
71
72 template <>
73 struct CONTENT_EXPORT ParamTraits<net::URLRequestStatus> { 64 struct CONTENT_EXPORT ParamTraits<net::URLRequestStatus> {
74 typedef net::URLRequestStatus param_type; 65 typedef net::URLRequestStatus param_type;
75 static void Write(Message* m, const param_type& p); 66 static void Write(Message* m, const param_type& p);
76 static bool Read(const Message* m, PickleIterator* iter, param_type* r); 67 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
77 static void Log(const param_type& p, std::string* l); 68 static void Log(const param_type& p, std::string* l);
78 }; 69 };
79 70
80 template <> 71 template <>
81 struct CONTENT_EXPORT ParamTraits<scoped_refptr<net::UploadData> > { 72 struct CONTENT_EXPORT ParamTraits<scoped_refptr<net::UploadData> > {
82 typedef scoped_refptr<net::UploadData> param_type; 73 typedef scoped_refptr<net::UploadData> param_type;
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 static void Write(Message* m, const param_type& p); 218 static void Write(Message* m, const param_type& p);
228 219
229 // Note: This function expects parameter |r| to be of type &SkBitmap since 220 // Note: This function expects parameter |r| to be of type &SkBitmap since
230 // r->SetConfig() and r->SetPixels() are called. 221 // r->SetConfig() and r->SetPixels() are called.
231 static bool Read(const Message* m, PickleIterator* iter, param_type* r); 222 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
232 223
233 static void Log(const param_type& p, std::string* l); 224 static void Log(const param_type& p, std::string* l);
234 }; 225 };
235 226
236 template <> 227 template <>
237 struct SimilarTypeTraits<WebKit::WebReferrerPolicy> { 228 struct SimilarTypeTraits<WebKit::WebReferrerPolicy> {
jam 2012/06/25 19:52:24 nit: these ones too?
Tom Sepez 2012/06/25 20:30:24 Converted these 3 to IPC_ENUM_TRAITS macros. Note
238 typedef int Type; 229 typedef int Type;
239 }; 230 };
240 231
241 template <> 232 template <>
242 struct SimilarTypeTraits<content::PageTransition> { 233 struct SimilarTypeTraits<content::PageTransition> {
243 typedef int Type; 234 typedef int Type;
244 }; 235 };
245 236
246 template <> 237 template <>
247 struct SimilarTypeTraits<content::SecurityStyle> { 238 struct SimilarTypeTraits<content::SecurityStyle> {
248 typedef int Type; 239 typedef int Type;
249 }; 240 };
250 241
251 template<>
252 struct CONTENT_EXPORT ParamTraits<content::ConsoleMessageLevel> {
253 typedef content::ConsoleMessageLevel param_type;
254 static void Write(Message* m, const param_type& p);
255 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
256 static void Log(const param_type& p, std::string* l);
257 };
258
259 } // namespace IPC 242 } // namespace IPC
260 243
261 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ 244 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698