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

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

Issue 2694413006: Scope and clean up uses of AccessibilityMode. (Closed)
Patch Set: define konstants Created 3 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
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_COMMON_CONTENT_PARAM_TRAITS_H_ 14 #ifndef CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_
15 #define CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ 15 #define CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_
16 16
17 #include "content/common/content_param_traits_macros.h" 17 #include "content/common/content_param_traits_macros.h"
18 #include "content/common/cursors/webcursor.h" 18 #include "content/common/cursors/webcursor.h"
19 #include "third_party/WebKit/public/platform/WebInputEvent.h" 19 #include "third_party/WebKit/public/platform/WebInputEvent.h"
20 20
21 namespace content { 21 namespace content {
22 class AccessibilityMode;
22 class MessagePort; 23 class MessagePort;
23 } 24 }
24 25
25 namespace IPC { 26 namespace IPC {
26 27
27 template <> 28 template <>
28 struct ParamTraits<content::WebCursor> { 29 struct ParamTraits<content::WebCursor> {
29 typedef content::WebCursor param_type; 30 typedef content::WebCursor param_type;
30 static void Write(base::Pickle* m, const param_type& p) { p.Serialize(m); } 31 static void Write(base::Pickle* m, const param_type& p) { p.Serialize(m); }
31 static bool Read(const base::Pickle* m, 32 static bool Read(const base::Pickle* m,
(...skipping 22 matching lines...) Expand all
54 template <> 55 template <>
55 struct CONTENT_EXPORT ParamTraits<content::MessagePort> { 56 struct CONTENT_EXPORT ParamTraits<content::MessagePort> {
56 typedef content::MessagePort param_type; 57 typedef content::MessagePort param_type;
57 static void GetSize(base::PickleSizer* sizer, const param_type& p); 58 static void GetSize(base::PickleSizer* sizer, const param_type& p);
58 static void Write(base::Pickle* m, const param_type& p); 59 static void Write(base::Pickle* m, const param_type& p);
59 static bool Read(const base::Pickle* m, base::PickleIterator* iter, 60 static bool Read(const base::Pickle* m, base::PickleIterator* iter,
60 param_type* r); 61 param_type* r);
61 static void Log(const param_type& p, std::string* l); 62 static void Log(const param_type& p, std::string* l);
62 }; 63 };
63 64
65 template <>
66 struct CONTENT_EXPORT ParamTraits<content::AccessibilityMode> {
67 typedef content::AccessibilityMode param_type;
68 static void GetSize(base::PickleSizer* sizer, const param_type& p);
69 static void Write(base::Pickle* m, const param_type& p);
70 static bool Read(const base::Pickle* m,
71 base::PickleIterator* iter,
72 param_type* r);
73 static void Log(const param_type& p, std::string* l);
74 };
75
64 } // namespace IPC 76 } // namespace IPC
65 77
66 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ 78 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698