| 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" | |
| 13 #include "content/public/common/referrer.h" | 12 #include "content/public/common/referrer.h" |
| 14 #include "content/public/common/security_style.h" | 13 #include "content/public/common/security_style.h" |
| 15 #include "content/public/common/ssl_status.h" | 14 #include "content/public/common/ssl_status.h" |
| 16 #include "content/public/common/web_preferences.h" | 15 #include "content/public/common/web_preferences.h" |
| 17 #include "content/public/common/webplugininfo.h" | 16 #include "content/public/common/webplugininfo.h" |
| 18 #include "ipc/ipc_message_macros.h" | 17 #include "ipc/ipc_message_macros.h" |
| 19 #include "net/base/network_change_notifier.h" | 18 #include "net/base/network_change_notifier.h" |
| 20 #include "net/base/request_priority.h" | 19 #include "net/base/request_priority.h" |
| 21 #include "third_party/WebKit/public/platform/WebPoint.h" | 20 #include "third_party/WebKit/public/platform/WebPoint.h" |
| 22 #include "third_party/WebKit/public/platform/WebRect.h" | 21 #include "third_party/WebKit/public/platform/WebRect.h" |
| 23 #include "third_party/WebKit/public/platform/WebReferrerPolicy.h" | 22 #include "third_party/WebKit/public/platform/WebReferrerPolicy.h" |
| 24 #include "third_party/WebKit/public/platform/WebURLRequest.h" | 23 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
| 25 #include "third_party/WebKit/public/web/WebWindowFeatures.h" | 24 #include "third_party/WebKit/public/web/WebWindowFeatures.h" |
| 25 #include "ui/base/page_transition_types.h" |
| 26 #include "ui/base/window_open_disposition.h" | 26 #include "ui/base/window_open_disposition.h" |
| 27 | 27 |
| 28 #undef IPC_MESSAGE_EXPORT | 28 #undef IPC_MESSAGE_EXPORT |
| 29 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 29 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 30 | 30 |
| 31 IPC_ENUM_TRAITS(content::PageTransition) // Bitmask. | 31 IPC_ENUM_TRAITS(ui::PageTransition) // Bitmask. |
| 32 IPC_ENUM_TRAITS_MAX_VALUE(net::NetworkChangeNotifier::ConnectionType, | 32 IPC_ENUM_TRAITS_MAX_VALUE(net::NetworkChangeNotifier::ConnectionType, |
| 33 net::NetworkChangeNotifier::CONNECTION_LAST) | 33 net::NetworkChangeNotifier::CONNECTION_LAST) |
| 34 IPC_ENUM_TRAITS_MAX_VALUE(content::ConsoleMessageLevel, | 34 IPC_ENUM_TRAITS_MAX_VALUE(content::ConsoleMessageLevel, |
| 35 content::CONSOLE_MESSAGE_LEVEL_LAST) | 35 content::CONSOLE_MESSAGE_LEVEL_LAST) |
| 36 IPC_ENUM_TRAITS_MAX_VALUE(content::SecurityStyle, | 36 IPC_ENUM_TRAITS_MAX_VALUE(content::SecurityStyle, |
| 37 content::SECURITY_STYLE_LAST) | 37 content::SECURITY_STYLE_LAST) |
| 38 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebReferrerPolicy, | 38 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebReferrerPolicy, |
| 39 blink::WebReferrerPolicyLast) | 39 blink::WebReferrerPolicyLast) |
| 40 IPC_ENUM_TRAITS_MAX_VALUE(content::EditingBehavior, | 40 IPC_ENUM_TRAITS_MAX_VALUE(content::EditingBehavior, |
| 41 content::EDITING_BEHAVIOR_LAST) | 41 content::EDITING_BEHAVIOR_LAST) |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible) | 216 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible) |
| 217 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible) | 217 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible) |
| 218 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible) | 218 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible) |
| 219 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible) | 219 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible) |
| 220 IPC_STRUCT_TRAITS_MEMBER(resizable) | 220 IPC_STRUCT_TRAITS_MEMBER(resizable) |
| 221 IPC_STRUCT_TRAITS_MEMBER(fullscreen) | 221 IPC_STRUCT_TRAITS_MEMBER(fullscreen) |
| 222 IPC_STRUCT_TRAITS_MEMBER(dialog) | 222 IPC_STRUCT_TRAITS_MEMBER(dialog) |
| 223 IPC_STRUCT_TRAITS_END() | 223 IPC_STRUCT_TRAITS_END() |
| 224 | 224 |
| 225 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ | 225 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |