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 1938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2314 // Since the browser keeps handles to the allocated transport DIBs, this | 2316 // Since the browser keeps handles to the allocated transport DIBs, this |
2315 // message is sent to tell the browser that it may release them when the | 2317 // message is sent to tell the browser that it may release them when the |
2316 // renderer is finished with them. | 2318 // renderer is finished with them. |
2317 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 2319 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
2318 TransportDIB::Id /* DIB id */) | 2320 TransportDIB::Id /* DIB id */) |
2319 #endif | 2321 #endif |
2320 | 2322 |
2321 // Adding a new message? Stick to the sort order above: first platform | 2323 // Adding a new message? Stick to the sort order above: first platform |
2322 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 2324 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
2323 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 2325 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |