Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 10795051: Implement asynchronous interface/plumbing for GetDefaultPrintSettings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 // Multiply-included message header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 408
409 // PPB_Graphics3D. 409 // PPB_Graphics3D.
410 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics3D_SwapBuffersACK, 410 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBGraphics3D_SwapBuffersACK,
411 ppapi::HostResource /* graphics_3d */, 411 ppapi::HostResource /* graphics_3d */,
412 int32_t /* pp_error */) 412 int32_t /* pp_error */)
413 413
414 // PPB_Instance. 414 // PPB_Instance.
415 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBInstance_MouseLockComplete, 415 IPC_MESSAGE_ROUTED2(PpapiMsg_PPBInstance_MouseLockComplete,
416 PP_Instance /* instance */, 416 PP_Instance /* instance */,
417 int32_t /* result */) 417 int32_t /* result */)
418 IPC_MESSAGE_ROUTED4(PpapiMsg_PPBInstance_GetDefaultPrintSettingsComplete,
419 int32 /* routing_id */,
420 PP_Instance /* instance */,
421 PP_PrintSettings_Dev /* settings */,
422 int32_t /* result */)
418 423
419 // PPP_Class. 424 // PPP_Class.
420 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_HasProperty, 425 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_HasProperty,
421 int64 /* ppp_class */, 426 int64 /* ppp_class */,
422 int64 /* object */, 427 int64 /* object */,
423 ppapi::proxy::SerializedVar /* property */, 428 ppapi::proxy::SerializedVar /* property */,
424 ppapi::proxy::SerializedVar /* out_exception */, 429 ppapi::proxy::SerializedVar /* out_exception */,
425 bool /* result */) 430 bool /* result */)
426 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_HasMethod, 431 IPC_SYNC_MESSAGE_ROUTED3_2(PpapiMsg_PPPClass_HasMethod,
427 int64 /* ppp_class */, 432 int64 /* ppp_class */,
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
957 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_ClearInputEvents, 962 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_ClearInputEvents,
958 PP_Instance /* instance */, 963 PP_Instance /* instance */,
959 uint32_t /* event_classes */) 964 uint32_t /* event_classes */)
960 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_PostMessage, 965 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_PostMessage,
961 PP_Instance /* instance */, 966 PP_Instance /* instance */,
962 ppapi::proxy::SerializedVar /* message */) 967 ppapi::proxy::SerializedVar /* message */)
963 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_LockMouse, 968 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_LockMouse,
964 PP_Instance /* instance */) 969 PP_Instance /* instance */)
965 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_UnlockMouse, 970 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_UnlockMouse,
966 PP_Instance /* instance */) 971 PP_Instance /* instance */)
967 IPC_SYNC_MESSAGE_ROUTED1_2(PpapiHostMsg_PPBPInstance_GetDefaultPrintSettings, 972 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBPInstance_GetDefaultPrintSettings,
968 PP_Instance /* instance */, 973 int32 /* routing_id */,
969 PP_PrintSettings_Dev /* settings */, 974 PP_Instance /* instance */)
970 bool /* result */)
971 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_ResolveRelativeToDocument, 975 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_ResolveRelativeToDocument,
972 PP_Instance /* instance */, 976 PP_Instance /* instance */,
973 ppapi::proxy::SerializedVar /* relative */, 977 ppapi::proxy::SerializedVar /* relative */,
974 ppapi::proxy::SerializedVar /* result */) 978 ppapi::proxy::SerializedVar /* result */)
975 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_DocumentCanRequest, 979 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_DocumentCanRequest,
976 PP_Instance /* instance */, 980 PP_Instance /* instance */,
977 ppapi::proxy::SerializedVar /* relative */, 981 ppapi::proxy::SerializedVar /* relative */,
978 PP_Bool /* result */) 982 PP_Bool /* result */)
979 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_DocumentCanAccessDocument, 983 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiHostMsg_PPBInstance_DocumentCanAccessDocument,
980 PP_Instance /* active */, 984 PP_Instance /* active */,
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
1429 1433
1430 // File chooser. 1434 // File chooser.
1431 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create) 1435 IPC_MESSAGE_CONTROL0(PpapiHostMsg_FileChooser_Create)
1432 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show, 1436 IPC_MESSAGE_CONTROL4(PpapiHostMsg_FileChooser_Show,
1433 bool /* save_as */, 1437 bool /* save_as */,
1434 bool /* open_multiple */, 1438 bool /* open_multiple */,
1435 std::string /* suggested_file_name */, 1439 std::string /* suggested_file_name */,
1436 std::vector<std::string> /* accept_mime_types */) 1440 std::vector<std::string> /* accept_mime_types */)
1437 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply, 1441 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_FileChooser_ShowReply,
1438 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */) 1442 std::vector<ppapi::PPB_FileRef_CreateInfo> /* files */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698