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

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

Issue 7990005: Use a placeholder instead of the default plugin for missing plug-ins on Mac and Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 9 years, 2 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 WebKit types so that they can be serialized over IPC. IPC::ParamTraits<> 6 // of WebKit 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. 11 // public members.
12 12
13 #ifndef CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_ 13 #ifndef CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_
14 #define CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_ 14 #define CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_
15 #pragma once 15 #pragma once
16 16
17 #include <string> 17 #include <string>
18 18
19 #include "base/memory/ref_counted.h" 19 #include "base/memory/ref_counted.h"
20 #include "content/common/content_export.h" 20 #include "content/common/content_export.h"
21 #include "ipc/ipc_message_utils.h" 21 #include "ipc/ipc_message_utils.h"
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h"
24 #include "webkit/blob/blob_data.h" 24 #include "webkit/blob/blob_data.h"
25 #include "webkit/glue/npruntime_util.h" 25 #include "webkit/glue/npruntime_util.h"
26 #include "webkit/glue/resource_type.h" 26 #include "webkit/glue/resource_type.h"
27 #include "webkit/glue/webcursor.h" 27 #include "webkit/glue/webcursor.h"
28 #include "webkit/glue/window_open_disposition.h" 28 #include "webkit/glue/window_open_disposition.h"
29 #include "webkit/plugins/webplugininfo.h"
29 30
30 namespace webkit_glue { 31 namespace webkit_glue {
31 struct PasswordForm; 32 struct PasswordForm;
32 struct ResourceDevToolsInfo; 33 struct ResourceDevToolsInfo;
33 struct ResourceLoadTimingInfo; 34 struct ResourceLoadTimingInfo;
34 } 35 }
35 36
36 // Define the NPVariant_Param struct and its enum here since it needs manual 37 // Define the NPVariant_Param struct and its enum here since it needs manual
37 // serialization code. 38 // serialization code.
38 enum NPVariant_ParamEnum { 39 enum NPVariant_ParamEnum {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 107
107 template <> 108 template <>
108 struct ParamTraits<NPIdentifier_Param> { 109 struct ParamTraits<NPIdentifier_Param> {
109 typedef NPIdentifier_Param param_type; 110 typedef NPIdentifier_Param param_type;
110 static void Write(Message* m, const param_type& p); 111 static void Write(Message* m, const param_type& p);
111 static bool Read(const Message* m, void** iter, param_type* r); 112 static bool Read(const Message* m, void** iter, param_type* r);
112 static void Log(const param_type& p, std::string* l); 113 static void Log(const param_type& p, std::string* l);
113 }; 114 };
114 115
115 template <> 116 template <>
117 struct ParamTraits<webkit::WebPluginMimeType> {
118 typedef webkit::WebPluginMimeType param_type;
119 static void Write(Message* m, const param_type& p);
120 static bool Read(const Message* m, void** iter, param_type* r);
121 static void Log(const param_type& p, std::string* l);
122 };
123
124 template <>
125 struct ParamTraits<webkit::WebPluginInfo> {
126 typedef webkit::WebPluginInfo param_type;
127 static void Write(Message* m, const param_type& p);
128 static bool Read(const Message* m, void** iter, param_type* r);
129 static void Log(const param_type& p, std::string* l);
130 };
131
132 template <>
116 struct ParamTraits<WebCursor> { 133 struct ParamTraits<WebCursor> {
117 typedef WebCursor param_type; 134 typedef WebCursor param_type;
118 static void Write(Message* m, const param_type& p) { 135 static void Write(Message* m, const param_type& p) {
119 p.Serialize(m); 136 p.Serialize(m);
120 } 137 }
121 static bool Read(const Message* m, void** iter, param_type* r) { 138 static bool Read(const Message* m, void** iter, param_type* r) {
122 return r->Deserialize(m, iter); 139 return r->Deserialize(m, iter);
123 } 140 }
124 static void Log(const param_type& p, std::string* l) { 141 static void Log(const param_type& p, std::string* l) {
125 l->append("<WebCursor>"); 142 l->append("<WebCursor>");
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 struct CONTENT_EXPORT ParamTraits<webkit_glue::PasswordForm> { 248 struct CONTENT_EXPORT ParamTraits<webkit_glue::PasswordForm> {
232 typedef webkit_glue::PasswordForm param_type; 249 typedef webkit_glue::PasswordForm param_type;
233 static void Write(Message* m, const param_type& p); 250 static void Write(Message* m, const param_type& p);
234 static bool Read(const Message* m, void** iter, param_type* p); 251 static bool Read(const Message* m, void** iter, param_type* p);
235 static void Log(const param_type& p, std::string* l); 252 static void Log(const param_type& p, std::string* l);
236 }; 253 };
237 254
238 } // namespace IPC 255 } // namespace IPC
239 256
240 #endif // CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_ 257 #endif // CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698