| 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/memory/shared_memory.h" | 8 #include "base/memory/shared_memory.h" |
| 9 #include "base/process/process.h" | 9 #include "base/process/process.h" |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 IPC_STRUCT_TRAITS_MEMBER(use_custom_colors) | 262 IPC_STRUCT_TRAITS_MEMBER(use_custom_colors) |
| 263 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) | 263 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
| 264 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) | 264 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) |
| 265 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) | 265 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) |
| 266 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) | 266 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) |
| 267 IPC_STRUCT_TRAITS_MEMBER(accept_languages) | 267 IPC_STRUCT_TRAITS_MEMBER(accept_languages) |
| 268 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) | 268 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) |
| 269 IPC_STRUCT_TRAITS_MEMBER(touchpad_fling_profile) | 269 IPC_STRUCT_TRAITS_MEMBER(touchpad_fling_profile) |
| 270 IPC_STRUCT_TRAITS_MEMBER(touchscreen_fling_profile) | 270 IPC_STRUCT_TRAITS_MEMBER(touchscreen_fling_profile) |
| 271 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) | 271 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) |
| 272 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) |
| 272 IPC_STRUCT_TRAITS_END() | 273 IPC_STRUCT_TRAITS_END() |
| 273 | 274 |
| 274 IPC_STRUCT_TRAITS_BEGIN(content::CookieData) | 275 IPC_STRUCT_TRAITS_BEGIN(content::CookieData) |
| 275 IPC_STRUCT_TRAITS_MEMBER(name) | 276 IPC_STRUCT_TRAITS_MEMBER(name) |
| 276 IPC_STRUCT_TRAITS_MEMBER(value) | 277 IPC_STRUCT_TRAITS_MEMBER(value) |
| 277 IPC_STRUCT_TRAITS_MEMBER(domain) | 278 IPC_STRUCT_TRAITS_MEMBER(domain) |
| 278 IPC_STRUCT_TRAITS_MEMBER(path) | 279 IPC_STRUCT_TRAITS_MEMBER(path) |
| 279 IPC_STRUCT_TRAITS_MEMBER(expires) | 280 IPC_STRUCT_TRAITS_MEMBER(expires) |
| 280 IPC_STRUCT_TRAITS_MEMBER(http_only) | 281 IPC_STRUCT_TRAITS_MEMBER(http_only) |
| 281 IPC_STRUCT_TRAITS_MEMBER(secure) | 282 IPC_STRUCT_TRAITS_MEMBER(secure) |
| (...skipping 2087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2369 // synchronously (see crbug.com/120597). This IPC message sends the character | 2370 // synchronously (see crbug.com/120597). This IPC message sends the character |
| 2370 // bounds after every composition change to always have correct bound info. | 2371 // bounds after every composition change to always have correct bound info. |
| 2371 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, | 2372 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, |
| 2372 ui::Range /* composition range */, | 2373 ui::Range /* composition range */, |
| 2373 std::vector<gfx::Rect> /* character bounds */) | 2374 std::vector<gfx::Rect> /* character bounds */) |
| 2374 #endif | 2375 #endif |
| 2375 | 2376 |
| 2376 // Adding a new message? Stick to the sort order above: first platform | 2377 // Adding a new message? Stick to the sort order above: first platform |
| 2377 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 2378 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 2378 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 2379 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |