| 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 // 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/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family) | 133 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family) |
| 134 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family) | 134 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family) |
| 135 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) | 135 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) |
| 136 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) | 136 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) |
| 137 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) | 137 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) |
| 138 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) | 138 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) |
| 139 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map) | 139 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map) |
| 140 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) | 140 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) |
| 141 IPC_STRUCT_TRAITS_MEMBER(default_font_size) | 141 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
| 142 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) | 142 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) |
| 143 IPC_STRUCT_TRAITS_MEMBER(default_device_scale_factor) |
| 143 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) | 144 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) |
| 144 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) | 145 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) |
| 145 IPC_STRUCT_TRAITS_MEMBER(default_encoding) | 146 IPC_STRUCT_TRAITS_MEMBER(default_encoding) |
| 146 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) | 147 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) |
| 147 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) | 148 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) |
| 148 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) | 149 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) |
| 149 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) | 150 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) |
| 150 IPC_STRUCT_TRAITS_MEMBER(images_enabled) | 151 IPC_STRUCT_TRAITS_MEMBER(images_enabled) |
| 151 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) | 152 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) |
| 152 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) | 153 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) |
| (...skipping 1792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1945 // have a javascript send a native value (string, number, boolean) to the | 1946 // have a javascript send a native value (string, number, boolean) to the |
| 1946 // listener in Cpp. (DomAutomationController) | 1947 // listener in Cpp. (DomAutomationController) |
| 1947 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, | 1948 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, |
| 1948 std::string /* json_string */, | 1949 std::string /* json_string */, |
| 1949 int /* automation_id */) | 1950 int /* automation_id */) |
| 1950 | 1951 |
| 1951 // Enable or disable inverting of web content pixels, for users who prefer | 1952 // Enable or disable inverting of web content pixels, for users who prefer |
| 1952 // white-on-black. | 1953 // white-on-black. |
| 1953 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent, | 1954 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent, |
| 1954 bool /* invert */) | 1955 bool /* invert */) |
| OLD | NEW |