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

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

Issue 147243004: Move common param trait enum's to IPC range-checked macros. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | « no previous file | content/public/common/console_message_level.h » ('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 // Singly or Multiply-included shared traits file depending on circumstances. 5 // Singly or Multiply-included shared traits file depending on circumstances.
6 // This allows the use of IPC serialization macros in more than one IPC message 6 // This allows the use of IPC serialization macros in more than one IPC message
7 // file. 7 // file.
8 #ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ 8 #ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
9 #define CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ 9 #define CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
10 10
11 #include "content/public/common/console_message_level.h" 11 #include "content/public/common/console_message_level.h"
12 #include "content/public/common/page_transition_types.h" 12 #include "content/public/common/page_transition_types.h"
13 #include "content/public/common/referrer.h" 13 #include "content/public/common/referrer.h"
14 #include "content/public/common/security_style.h" 14 #include "content/public/common/security_style.h"
15 #include "content/public/common/ssl_status.h" 15 #include "content/public/common/ssl_status.h"
16 #include "content/public/common/webplugininfo.h" 16 #include "content/public/common/webplugininfo.h"
17 #include "ipc/ipc_message_macros.h" 17 #include "ipc/ipc_message_macros.h"
18 #include "net/base/request_priority.h" 18 #include "net/base/request_priority.h"
19 #include "third_party/WebKit/public/platform/WebPoint.h" 19 #include "third_party/WebKit/public/platform/WebPoint.h"
20 #include "third_party/WebKit/public/platform/WebRect.h" 20 #include "third_party/WebKit/public/platform/WebRect.h"
21 #include "third_party/WebKit/public/platform/WebReferrerPolicy.h" 21 #include "third_party/WebKit/public/platform/WebReferrerPolicy.h"
22 #include "third_party/WebKit/public/platform/WebURLRequest.h" 22 #include "third_party/WebKit/public/platform/WebURLRequest.h"
23 #include "third_party/WebKit/public/web/WebWindowFeatures.h" 23 #include "third_party/WebKit/public/web/WebWindowFeatures.h"
24 #include "ui/base/window_open_disposition.h" 24 #include "ui/base/window_open_disposition.h"
25 #include "webkit/common/webpreferences.h" 25 #include "webkit/common/webpreferences.h"
26 26
27 #undef IPC_MESSAGE_EXPORT 27 #undef IPC_MESSAGE_EXPORT
28 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT 28 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
29 29
30 IPC_ENUM_TRAITS(content::ConsoleMessageLevel) 30 IPC_ENUM_TRAITS(content::PageTransition) // Bitmask.
31 IPC_ENUM_TRAITS(content::PageTransition) 31
32 IPC_ENUM_TRAITS(content::SecurityStyle) 32 IPC_ENUM_TRAITS_MAX_VALUE(content::ConsoleMessageLevel,
33 IPC_ENUM_TRAITS(blink::WebReferrerPolicy) 33 content::CONSOLE_MESSAGE_LEVEL_LAST)
34 IPC_ENUM_TRAITS(WindowOpenDisposition) 34 IPC_ENUM_TRAITS_MAX_VALUE(content::SecurityStyle,
35 IPC_ENUM_TRAITS(webkit_glue::EditingBehavior) 35 content::SECURITY_STYLE_LAST)
36 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebReferrerPolicy,
37 blink::WebReferrerPolicyLast)
38 IPC_ENUM_TRAITS_MAX_VALUE(webkit_glue::EditingBehavior,
39 webkit_glue::EDITING_BEHAVIOR_LAST)
40 IPC_ENUM_TRAITS_MAX_VALUE(WindowOpenDisposition,
41 WINDOW_OPEN_DISPOSITION_LAST)
36 IPC_ENUM_TRAITS_MAX_VALUE(net::RequestPriority, net::MAXIMUM_PRIORITY) 42 IPC_ENUM_TRAITS_MAX_VALUE(net::RequestPriority, net::MAXIMUM_PRIORITY)
37 43
38 IPC_STRUCT_TRAITS_BEGIN(blink::WebPoint) 44 IPC_STRUCT_TRAITS_BEGIN(blink::WebPoint)
39 IPC_STRUCT_TRAITS_MEMBER(x) 45 IPC_STRUCT_TRAITS_MEMBER(x)
40 IPC_STRUCT_TRAITS_MEMBER(y) 46 IPC_STRUCT_TRAITS_MEMBER(y)
41 IPC_STRUCT_TRAITS_END() 47 IPC_STRUCT_TRAITS_END()
42 48
43 IPC_STRUCT_TRAITS_BEGIN(blink::WebRect) 49 IPC_STRUCT_TRAITS_BEGIN(blink::WebRect)
44 IPC_STRUCT_TRAITS_MEMBER(x) 50 IPC_STRUCT_TRAITS_MEMBER(x)
45 IPC_STRUCT_TRAITS_MEMBER(y) 51 IPC_STRUCT_TRAITS_MEMBER(y)
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible) 226 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible)
221 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible) 227 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible)
222 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible) 228 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible)
223 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible) 229 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible)
224 IPC_STRUCT_TRAITS_MEMBER(resizable) 230 IPC_STRUCT_TRAITS_MEMBER(resizable)
225 IPC_STRUCT_TRAITS_MEMBER(fullscreen) 231 IPC_STRUCT_TRAITS_MEMBER(fullscreen)
226 IPC_STRUCT_TRAITS_MEMBER(dialog) 232 IPC_STRUCT_TRAITS_MEMBER(dialog)
227 IPC_STRUCT_TRAITS_END() 233 IPC_STRUCT_TRAITS_END()
228 234
229 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ 235 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
OLDNEW
« no previous file with comments | « no previous file | content/public/common/console_message_level.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698