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

Side by Side Diff: content/common_child/plugin_param_traits.h

Issue 15047014: Move child-common classes to content/common_child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « content/common_child/plugin_messages.h ('k') | content/common_child/plugin_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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_COMMON_PLUGIN_PARAM_TRAITS_H_ 14 #ifndef CONTENT_COMMON_CHILD_PLUGIN_PARAM_TRAITS_H_
15 #define CONTENT_COMMON_PLUGIN_PARAM_TRAITS_H_ 15 #define CONTENT_COMMON_CHILD_PLUGIN_PARAM_TRAITS_H_
16 16
17 #include <string> 17 #include <string>
18 #include "ipc/ipc_message.h" 18 #include "ipc/ipc_message.h"
19 #include "ipc/ipc_param_traits.h" 19 #include "ipc/ipc_param_traits.h"
20 #include "webkit/glue/npruntime_util.h" 20 #include "webkit/glue/npruntime_util.h"
21 21
22 namespace content { 22 namespace content {
23 23
24 // Define the NPVariant_Param struct and its enum here since it needs manual 24 // Define the NPVariant_Param struct and its enum here since it needs manual
25 // serialization code. 25 // serialization code.
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 struct ParamTraits<content::NPIdentifier_Param> { 74 struct ParamTraits<content::NPIdentifier_Param> {
75 typedef content::NPIdentifier_Param param_type; 75 typedef content::NPIdentifier_Param param_type;
76 static void Write(Message* m, const param_type& p); 76 static void Write(Message* m, const param_type& p);
77 static bool Read(const Message* m, PickleIterator* iter, param_type* r); 77 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
78 static void Log(const param_type& p, std::string* l); 78 static void Log(const param_type& p, std::string* l);
79 }; 79 };
80 80
81 } // namespace IPC 81 } // namespace IPC
82 82
83 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ 83 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_
OLDNEW
« no previous file with comments | « content/common_child/plugin_messages.h ('k') | content/common_child/plugin_param_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698