| 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 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 IPC_STRUCT_MEMBER(std::string, state) | 687 IPC_STRUCT_MEMBER(std::string, state) |
| 688 | 688 |
| 689 // Type of navigation. | 689 // Type of navigation. |
| 690 IPC_STRUCT_MEMBER(ViewMsg_Navigate_Type::Value, navigation_type) | 690 IPC_STRUCT_MEMBER(ViewMsg_Navigate_Type::Value, navigation_type) |
| 691 | 691 |
| 692 // The time the request was created | 692 // The time the request was created |
| 693 IPC_STRUCT_MEMBER(base::Time, request_time) | 693 IPC_STRUCT_MEMBER(base::Time, request_time) |
| 694 | 694 |
| 695 // Extra headers (separated by \n) to send during the request. | 695 // Extra headers (separated by \n) to send during the request. |
| 696 IPC_STRUCT_MEMBER(std::string, extra_headers) | 696 IPC_STRUCT_MEMBER(std::string, extra_headers) |
| 697 |
| 698 // Is the tab containing the corresponding rvh visible? |
| 699 IPC_STRUCT_MEMBER(bool, is_hidden) |
| 697 IPC_STRUCT_END() | 700 IPC_STRUCT_END() |
| 698 | 701 |
| 699 IPC_STRUCT_BEGIN(ViewMsg_New_Params) | 702 IPC_STRUCT_BEGIN(ViewMsg_New_Params) |
| 700 // The parent window's id. | 703 // The parent window's id. |
| 701 IPC_STRUCT_MEMBER(gfx::NativeViewId, parent_window) | 704 IPC_STRUCT_MEMBER(gfx::NativeViewId, parent_window) |
| 702 | 705 |
| 703 // Surface for accelerated rendering. | 706 // Surface for accelerated rendering. |
| 704 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, compositing_surface) | 707 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, compositing_surface) |
| 705 | 708 |
| 706 // Renderer-wide preferences. | 709 // Renderer-wide preferences. |
| (...skipping 1233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1940 | 1943 |
| 1941 // Stores new inspector setting in the profile. | 1944 // Stores new inspector setting in the profile. |
| 1942 // TODO(jam): this should be in the chrome module | 1945 // TODO(jam): this should be in the chrome module |
| 1943 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, | 1946 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateInspectorSetting, |
| 1944 std::string, /* key */ | 1947 std::string, /* key */ |
| 1945 std::string /* value */) | 1948 std::string /* value */) |
| 1946 | 1949 |
| 1947 // Send back a string to be recorded by UserMetrics. | 1950 // Send back a string to be recorded by UserMetrics. |
| 1948 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, | 1951 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, |
| 1949 std::string /* action */) | 1952 std::string /* action */) |
| OLD | NEW |