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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 IPC_STRUCT_END() | 356 IPC_STRUCT_END() |
357 | 357 |
358 IPC_STRUCT_BEGIN(ViewHostMsg_DateTimeDialogValue_Params) | 358 IPC_STRUCT_BEGIN(ViewHostMsg_DateTimeDialogValue_Params) |
359 IPC_STRUCT_MEMBER(int, dialog_type) | 359 IPC_STRUCT_MEMBER(int, dialog_type) |
360 IPC_STRUCT_MEMBER(int, year) | 360 IPC_STRUCT_MEMBER(int, year) |
361 IPC_STRUCT_MEMBER(int, month) | 361 IPC_STRUCT_MEMBER(int, month) |
362 IPC_STRUCT_MEMBER(int, day) | 362 IPC_STRUCT_MEMBER(int, day) |
363 IPC_STRUCT_MEMBER(int, hour) | 363 IPC_STRUCT_MEMBER(int, hour) |
364 IPC_STRUCT_MEMBER(int, minute) | 364 IPC_STRUCT_MEMBER(int, minute) |
365 IPC_STRUCT_MEMBER(int, second) | 365 IPC_STRUCT_MEMBER(int, second) |
| 366 IPC_STRUCT_MEMBER(double, minimum) |
| 367 IPC_STRUCT_MEMBER(double, maximum) |
366 IPC_STRUCT_END() | 368 IPC_STRUCT_END() |
367 | 369 |
368 IPC_STRUCT_BEGIN(ViewHostMsg_DidFailProvisionalLoadWithError_Params) | 370 IPC_STRUCT_BEGIN(ViewHostMsg_DidFailProvisionalLoadWithError_Params) |
369 // The frame ID for the failure report. | 371 // The frame ID for the failure report. |
370 IPC_STRUCT_MEMBER(int64, frame_id) | 372 IPC_STRUCT_MEMBER(int64, frame_id) |
371 // True if this is the top-most frame. | 373 // True if this is the top-most frame. |
372 IPC_STRUCT_MEMBER(bool, is_main_frame) | 374 IPC_STRUCT_MEMBER(bool, is_main_frame) |
373 // Error code as reported in the DidFailProvisionalLoad callback. | 375 // Error code as reported in the DidFailProvisionalLoad callback. |
374 IPC_STRUCT_MEMBER(int, error_code) | 376 IPC_STRUCT_MEMBER(int, error_code) |
375 // An error message generated from the error_code. This can be an empty | 377 // An error message generated from the error_code. This can be an empty |
(...skipping 1934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2310 // Since the browser keeps handles to the allocated transport DIBs, this | 2312 // Since the browser keeps handles to the allocated transport DIBs, this |
2311 // message is sent to tell the browser that it may release them when the | 2313 // message is sent to tell the browser that it may release them when the |
2312 // renderer is finished with them. | 2314 // renderer is finished with them. |
2313 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 2315 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
2314 TransportDIB::Id /* DIB id */) | 2316 TransportDIB::Id /* DIB id */) |
2315 #endif | 2317 #endif |
2316 | 2318 |
2317 // Adding a new message? Stick to the sort order above: first platform | 2319 // Adding a new message? Stick to the sort order above: first platform |
2318 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 2320 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
2319 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 2321 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |