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

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

Issue 170843007: Introduce url::Origin to represent Web Origin. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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/websocket_messages.h ('k') | content/public/common/common_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
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 16
17 #include <string>
18
17 #include "base/memory/ref_counted.h" 19 #include "base/memory/ref_counted.h"
18 #include "content/common/content_export.h" 20 #include "content/common/content_export.h"
19 #include "content/public/common/common_param_traits_macros.h" 21 #include "content/public/common/common_param_traits_macros.h"
20 #include "ipc/ipc_message_utils.h" 22 #include "ipc/ipc_message_utils.h"
21 #include "ui/gfx/native_widget_types.h" 23 #include "ui/gfx/native_widget_types.h"
22 #include "ui/surface/transport_dib.h" 24 #include "ui/surface/transport_dib.h"
23 #include "url/gurl.h" 25 #include "url/gurl.h"
26 #include "url/origin.h"
24 27
25 class SkBitmap; 28 class SkBitmap;
26 29
27 namespace content { 30 namespace content {
28 class PageState; 31 class PageState;
29 } 32 }
30 33
31 namespace gfx { 34 namespace gfx {
32 class Point; 35 class Point;
33 class Rect; 36 class Rect;
(...skipping 10 matching lines...) Expand all
44 namespace IPC { 47 namespace IPC {
45 48
46 template <> 49 template <>
47 struct CONTENT_EXPORT ParamTraits<GURL> { 50 struct CONTENT_EXPORT ParamTraits<GURL> {
48 typedef GURL param_type; 51 typedef GURL param_type;
49 static void Write(Message* m, const param_type& p); 52 static void Write(Message* m, const param_type& p);
50 static bool Read(const Message* m, PickleIterator* iter, param_type* p); 53 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
51 static void Log(const param_type& p, std::string* l); 54 static void Log(const param_type& p, std::string* l);
52 }; 55 };
53 56
57 template <>
58 struct CONTENT_EXPORT ParamTraits<url::Origin> {
59 typedef url::Origin param_type;
60 static void Write(Message* m, const param_type& p);
61 static bool Read(const Message* m, PickleIterator* iter, param_type* p);
62 static void Log(const param_type& p, std::string* l);
63 };
64
54 template<> 65 template<>
55 struct CONTENT_EXPORT ParamTraits<net::HostPortPair> { 66 struct CONTENT_EXPORT ParamTraits<net::HostPortPair> {
56 typedef net::HostPortPair param_type; 67 typedef net::HostPortPair param_type;
57 static void Write(Message* m, const param_type& p); 68 static void Write(Message* m, const param_type& p);
58 static bool Read(const Message* m, PickleIterator* iter, param_type* r); 69 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
59 static void Log(const param_type& p, std::string* l); 70 static void Log(const param_type& p, std::string* l);
60 }; 71 };
61 72
62 template <> 73 template <>
63 struct CONTENT_EXPORT ParamTraits<net::IPEndPoint> { 74 struct CONTENT_EXPORT ParamTraits<net::IPEndPoint> {
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 // Note: This function expects parameter |r| to be of type &SkBitmap since 230 // Note: This function expects parameter |r| to be of type &SkBitmap since
220 // r->SetConfig() and r->SetPixels() are called. 231 // r->SetConfig() and r->SetPixels() are called.
221 static bool Read(const Message* m, PickleIterator* iter, param_type* r); 232 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
222 233
223 static void Log(const param_type& p, std::string* l); 234 static void Log(const param_type& p, std::string* l);
224 }; 235 };
225 236
226 } // namespace IPC 237 } // namespace IPC
227 238
228 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_ 239 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_H_
OLDNEW
« no previous file with comments | « content/common/websocket_messages.h ('k') | content/public/common/common_param_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698