| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 | 381 |
| 382 // Security policy type used in the worker. | 382 // Security policy type used in the worker. |
| 383 IPC_STRUCT_MEMBER(blink::WebContentSecurityPolicyType, security_policy_type) | 383 IPC_STRUCT_MEMBER(blink::WebContentSecurityPolicyType, security_policy_type) |
| 384 | 384 |
| 385 // The ID of the parent document (unique within parent renderer). | 385 // The ID of the parent document (unique within parent renderer). |
| 386 IPC_STRUCT_MEMBER(unsigned long long, document_id) | 386 IPC_STRUCT_MEMBER(unsigned long long, document_id) |
| 387 | 387 |
| 388 // RenderFrame routing id used to send messages back to the parent. | 388 // RenderFrame routing id used to send messages back to the parent. |
| 389 IPC_STRUCT_MEMBER(int, render_frame_route_id) | 389 IPC_STRUCT_MEMBER(int, render_frame_route_id) |
| 390 | 390 |
| 391 // Address space of the context that created the worker. |
| 392 IPC_STRUCT_MEMBER(blink::WebAddressSpace, creation_address_space) |
| 393 |
| 391 // The type (secure or nonsecure) of the context that created the worker. | 394 // The type (secure or nonsecure) of the context that created the worker. |
| 392 IPC_STRUCT_MEMBER(blink::WebSharedWorkerCreationContextType, | 395 IPC_STRUCT_MEMBER(blink::WebSharedWorkerCreationContextType, |
| 393 creation_context_type) | 396 creation_context_type) |
| 394 IPC_STRUCT_END() | 397 IPC_STRUCT_END() |
| 395 | 398 |
| 396 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Reply) | 399 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Reply) |
| 397 // The route id for the created worker. | 400 // The route id for the created worker. |
| 398 IPC_STRUCT_MEMBER(int, route_id) | 401 IPC_STRUCT_MEMBER(int, route_id) |
| 399 | 402 |
| 400 // The error that occurred, if the browser failed to create the | 403 // The error that occurred, if the browser failed to create the |
| (...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1331 // Instructs the browser to start plugin IME. | 1334 // Instructs the browser to start plugin IME. |
| 1332 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) | 1335 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) |
| 1333 | 1336 |
| 1334 // Receives content of a web page as plain text. | 1337 // Receives content of a web page as plain text. |
| 1335 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1338 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1336 #endif | 1339 #endif |
| 1337 | 1340 |
| 1338 // Adding a new message? Stick to the sort order above: first platform | 1341 // Adding a new message? Stick to the sort order above: first platform |
| 1339 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1342 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1340 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1343 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |