OLD | NEW |
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/password_form.h" | 13 #include "content/public/common/password_form.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 "ipc/ipc_message_macros.h" | 16 #include "ipc/ipc_message_macros.h" |
17 #include "net/base/request_priority.h" | 17 #include "net/base/request_priority.h" |
18 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h" | 18 #include "third_party/WebKit/public/platform/WebPoint.h" |
19 #include "third_party/WebKit/Source/Platform/chromium/public/WebRect.h" | 19 #include "third_party/WebKit/public/platform/WebRect.h" |
20 #include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h
" | 20 #include "third_party/WebKit/public/platform/WebReferrerPolicy.h" |
21 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h" | 21 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
22 #include "ui/base/window_open_disposition.h" | 22 #include "ui/base/window_open_disposition.h" |
23 #include "webkit/glue/webpreferences.h" | 23 #include "webkit/glue/webpreferences.h" |
24 #include "webkit/plugins/webplugininfo.h" | 24 #include "webkit/plugins/webplugininfo.h" |
25 | 25 |
26 #undef IPC_MESSAGE_EXPORT | 26 #undef IPC_MESSAGE_EXPORT |
27 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 27 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
28 | 28 |
29 IPC_ENUM_TRAITS(content::ConsoleMessageLevel) | 29 IPC_ENUM_TRAITS(content::ConsoleMessageLevel) |
30 IPC_ENUM_TRAITS(content::PageTransition) | 30 IPC_ENUM_TRAITS(content::PageTransition) |
31 IPC_ENUM_TRAITS(content::SecurityStyle) | 31 IPC_ENUM_TRAITS(content::SecurityStyle) |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 IPC_STRUCT_TRAITS_MEMBER(force_enable_zoom) | 199 IPC_STRUCT_TRAITS_MEMBER(force_enable_zoom) |
200 IPC_STRUCT_TRAITS_MEMBER(double_tap_to_zoom_enabled) | 200 IPC_STRUCT_TRAITS_MEMBER(double_tap_to_zoom_enabled) |
201 IPC_STRUCT_TRAITS_MEMBER(user_gesture_required_for_media_playback) | 201 IPC_STRUCT_TRAITS_MEMBER(user_gesture_required_for_media_playback) |
202 IPC_STRUCT_TRAITS_MEMBER(default_video_poster_url) | 202 IPC_STRUCT_TRAITS_MEMBER(default_video_poster_url) |
203 IPC_STRUCT_TRAITS_MEMBER(support_deprecated_target_density_dpi) | 203 IPC_STRUCT_TRAITS_MEMBER(support_deprecated_target_density_dpi) |
204 IPC_STRUCT_TRAITS_MEMBER(use_wide_viewport) | 204 IPC_STRUCT_TRAITS_MEMBER(use_wide_viewport) |
205 #endif | 205 #endif |
206 IPC_STRUCT_TRAITS_END() | 206 IPC_STRUCT_TRAITS_END() |
207 | 207 |
208 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 208 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
OLD | NEW |