| OLD | NEW | 
|---|
| 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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. | 
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. | 
| 7 | 7 | 
| 8 #include "base/process.h" | 8 #include "base/process.h" | 
| 9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" | 
| 10 #include "content/common/common_param_traits.h" | 10 #include "content/common/common_param_traits.h" | 
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 324   IPC_STRUCT_TRAITS_MEMBER(accelerated_video_enabled) | 324   IPC_STRUCT_TRAITS_MEMBER(accelerated_video_enabled) | 
| 325   IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) | 325   IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) | 
| 326   IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) | 326   IPC_STRUCT_TRAITS_MEMBER(interactive_form_validation_enabled) | 
| 327   IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) | 327   IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) | 
| 328   IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) | 328   IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) | 
| 329   IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) | 329   IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) | 
| 330 IPC_STRUCT_TRAITS_END() | 330 IPC_STRUCT_TRAITS_END() | 
| 331 | 331 | 
| 332 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) | 332 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) | 
| 333   IPC_STRUCT_TRAITS_MEMBER(label) | 333   IPC_STRUCT_TRAITS_MEMBER(label) | 
|  | 334   IPC_STRUCT_TRAITS_MEMBER(toolTip) | 
| 334   IPC_STRUCT_TRAITS_MEMBER(type) | 335   IPC_STRUCT_TRAITS_MEMBER(type) | 
| 335   IPC_STRUCT_TRAITS_MEMBER(action) | 336   IPC_STRUCT_TRAITS_MEMBER(action) | 
| 336   IPC_STRUCT_TRAITS_MEMBER(rtl) | 337   IPC_STRUCT_TRAITS_MEMBER(rtl) | 
| 337   IPC_STRUCT_TRAITS_MEMBER(has_directional_override) | 338   IPC_STRUCT_TRAITS_MEMBER(has_directional_override) | 
| 338   IPC_STRUCT_TRAITS_MEMBER(enabled) | 339   IPC_STRUCT_TRAITS_MEMBER(enabled) | 
| 339   IPC_STRUCT_TRAITS_MEMBER(checked) | 340   IPC_STRUCT_TRAITS_MEMBER(checked) | 
| 340   IPC_STRUCT_TRAITS_MEMBER(submenu) | 341   IPC_STRUCT_TRAITS_MEMBER(submenu) | 
| 341 IPC_STRUCT_TRAITS_END() | 342 IPC_STRUCT_TRAITS_END() | 
| 342 | 343 | 
| 343 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::CustomContextMenuContext) | 344 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::CustomContextMenuContext) | 
| (...skipping 1594 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1938 | 1939 | 
| 1939 // Stores new inspector setting in the profile. | 1940 // Stores new inspector setting in the profile. | 
| 1940 // TODO(jam): this should be in the chrome module | 1941 // TODO(jam): this should be in the chrome module | 
| 1941 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, | 1942 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, | 
| 1942                     std::string,  /* key */ | 1943                     std::string,  /* key */ | 
| 1943                     std::string /* value */) | 1944                     std::string /* value */) | 
| 1944 | 1945 | 
| 1945 // Send back a string to be recorded by UserMetrics. | 1946 // Send back a string to be recorded by UserMetrics. | 
| 1946 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, | 1947 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, | 
| 1947                      std::string /* action */) | 1948                      std::string /* action */) | 
| OLD | NEW | 
|---|