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