| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled) | 320 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled) |
| 321 IPC_STRUCT_TRAITS_MEMBER(accelerated_drawing_enabled) | 321 IPC_STRUCT_TRAITS_MEMBER(accelerated_drawing_enabled) |
| 322 IPC_STRUCT_TRAITS_MEMBER(accelerated_plugins_enabled) | 322 IPC_STRUCT_TRAITS_MEMBER(accelerated_plugins_enabled) |
| 323 IPC_STRUCT_TRAITS_MEMBER(accelerated_layers_enabled) | 323 IPC_STRUCT_TRAITS_MEMBER(accelerated_layers_enabled) |
| 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_MEMBER(enable_scroll_animator) |
| 330 IPC_STRUCT_TRAITS_END() | 331 IPC_STRUCT_TRAITS_END() |
| 331 | 332 |
| 332 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) | 333 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) |
| 333 IPC_STRUCT_TRAITS_MEMBER(label) | 334 IPC_STRUCT_TRAITS_MEMBER(label) |
| 334 IPC_STRUCT_TRAITS_MEMBER(toolTip) | 335 IPC_STRUCT_TRAITS_MEMBER(toolTip) |
| 335 IPC_STRUCT_TRAITS_MEMBER(type) | 336 IPC_STRUCT_TRAITS_MEMBER(type) |
| 336 IPC_STRUCT_TRAITS_MEMBER(action) | 337 IPC_STRUCT_TRAITS_MEMBER(action) |
| 337 IPC_STRUCT_TRAITS_MEMBER(rtl) | 338 IPC_STRUCT_TRAITS_MEMBER(rtl) |
| 338 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) | 339 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) |
| 339 IPC_STRUCT_TRAITS_MEMBER(enabled) | 340 IPC_STRUCT_TRAITS_MEMBER(enabled) |
| (...skipping 1617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1957 std::string /* value */) | 1958 std::string /* value */) |
| 1958 | 1959 |
| 1959 // Send back a string to be recorded by UserMetrics. | 1960 // Send back a string to be recorded by UserMetrics. |
| 1960 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, | 1961 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, |
| 1961 std::string /* action */) | 1962 std::string /* action */) |
| 1962 | 1963 |
| 1963 // Provide the browser process with current renderer framerate. | 1964 // Provide the browser process with current renderer framerate. |
| 1964 IPC_MESSAGE_CONTROL2(ViewHostMsg_FPS, | 1965 IPC_MESSAGE_CONTROL2(ViewHostMsg_FPS, |
| 1965 int /* routing id */, | 1966 int /* routing id */, |
| 1966 float /* frames per second */) | 1967 float /* frames per second */) |
| OLD | NEW |