| 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 "base/string16.h" | 10 #include "base/string16.h" |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 IPC_STRUCT_END() | 354 IPC_STRUCT_END() |
| 355 | 355 |
| 356 IPC_STRUCT_BEGIN(ViewHostMsg_DateTimeDialogValue_Params) | 356 IPC_STRUCT_BEGIN(ViewHostMsg_DateTimeDialogValue_Params) |
| 357 IPC_STRUCT_MEMBER(int, dialog_type) | 357 IPC_STRUCT_MEMBER(int, dialog_type) |
| 358 IPC_STRUCT_MEMBER(int, year) | 358 IPC_STRUCT_MEMBER(int, year) |
| 359 IPC_STRUCT_MEMBER(int, month) | 359 IPC_STRUCT_MEMBER(int, month) |
| 360 IPC_STRUCT_MEMBER(int, day) | 360 IPC_STRUCT_MEMBER(int, day) |
| 361 IPC_STRUCT_MEMBER(int, hour) | 361 IPC_STRUCT_MEMBER(int, hour) |
| 362 IPC_STRUCT_MEMBER(int, minute) | 362 IPC_STRUCT_MEMBER(int, minute) |
| 363 IPC_STRUCT_MEMBER(int, second) | 363 IPC_STRUCT_MEMBER(int, second) |
| 364 IPC_STRUCT_MEMBER(double, minimum) |
| 365 IPC_STRUCT_MEMBER(double, maximum) |
| 364 IPC_STRUCT_END() | 366 IPC_STRUCT_END() |
| 365 | 367 |
| 366 IPC_STRUCT_BEGIN(ViewHostMsg_DidFailProvisionalLoadWithError_Params) | 368 IPC_STRUCT_BEGIN(ViewHostMsg_DidFailProvisionalLoadWithError_Params) |
| 367 // The frame ID for the failure report. | 369 // The frame ID for the failure report. |
| 368 IPC_STRUCT_MEMBER(int64, frame_id) | 370 IPC_STRUCT_MEMBER(int64, frame_id) |
| 369 // True if this is the top-most frame. | 371 // True if this is the top-most frame. |
| 370 IPC_STRUCT_MEMBER(bool, is_main_frame) | 372 IPC_STRUCT_MEMBER(bool, is_main_frame) |
| 371 // Error code as reported in the DidFailProvisionalLoad callback. | 373 // Error code as reported in the DidFailProvisionalLoad callback. |
| 372 IPC_STRUCT_MEMBER(int, error_code) | 374 IPC_STRUCT_MEMBER(int, error_code) |
| 373 // An error message generated from the error_code. This can be an empty | 375 // An error message generated from the error_code. This can be an empty |
| (...skipping 1921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2295 // Since the browser keeps handles to the allocated transport DIBs, this | 2297 // Since the browser keeps handles to the allocated transport DIBs, this |
| 2296 // message is sent to tell the browser that it may release them when the | 2298 // message is sent to tell the browser that it may release them when the |
| 2297 // renderer is finished with them. | 2299 // renderer is finished with them. |
| 2298 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 2300 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
| 2299 TransportDIB::Id /* DIB id */) | 2301 TransportDIB::Id /* DIB id */) |
| 2300 #endif | 2302 #endif |
| 2301 | 2303 |
| 2302 // Adding a new message? Stick to the sort order above: first platform | 2304 // Adding a new message? Stick to the sort order above: first platform |
| 2303 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 2305 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 2304 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 2306 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |