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 3 // found in the LICENSE file. 4 5 // From dev/ppb_printing_dev.idl modified Tue Aug 20 08:13:36 2013. 6 7 #include "ppapi/c/dev/ppb_printing_dev.h" 8 #include "ppapi/c/pp_completion_callback.h" 9 #include "ppapi/c/pp_errors.h" 10 #include "ppapi/shared_impl/tracked_callback.h" 11 #include "ppapi/thunk/enter.h" 12 #include "ppapi/thunk/ppapi_thunk_export.h" 13 #include "ppapi/thunk/ppb_printing_api.h" 14 15 namespace ppapi { 16 namespace thunk { 17 18 namespace { 19 Create(PP_Instance instance)20PP_Resource Create(PP_Instance instance) { 21 VLOG(4) << "PPB_Printing_Dev::Create()"; 22 EnterResourceCreation enter(instance); 23 if (enter.failed()) 24 return 0; 25 return enter.functions()->CreatePrinting(instance); 26 } 27 GetDefaultPrintSettings(PP_Resource resource,struct PP_PrintSettings_Dev * print_settings,struct PP_CompletionCallback callback)28int32_t GetDefaultPrintSettings(PP_Resource resource, 29 struct PP_PrintSettings_Dev* print_settings, 30 struct PP_CompletionCallback callback) { 31 VLOG(4) << "PPB_Printing_Dev::GetDefaultPrintSettings()"; 32 EnterResource<PPB_Printing_API> enter(resource, callback, true); 33 if (enter.failed()) 34 return enter.retval(); 35 return enter.SetResult(enter.object()->GetDefaultPrintSettings( 36 print_settings, 37 enter.callback())); 38 } 39 40 const PPB_Printing_Dev_0_7 g_ppb_printing_dev_thunk_0_7 = { 41 &Create, 42 &GetDefaultPrintSettings 43 }; 44 45 } // namespace 46 47 PPAPI_THUNK_EXPORT const PPB_Printing_Dev_0_7* GetPPB_Printing_Dev_0_7_Thunk()48 GetPPB_Printing_Dev_0_7_Thunk() { 49 return &g_ppb_printing_dev_thunk_0_7; 50 } 51 52 } // namespace thunk 53 } // namespace ppapi 54