| 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 // From dev/ppb_printing_dev.idl modified Tue May 7 14:43:00 2013. | 5 // From dev/ppb_printing_dev.idl modified Wed Jan 27 17:10:16 2016. |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include "ppapi/c/dev/ppb_printing_dev.h" | 9 #include "ppapi/c/dev/ppb_printing_dev.h" |
| 10 #include "ppapi/c/pp_completion_callback.h" | 10 #include "ppapi/c/pp_completion_callback.h" |
| 11 #include "ppapi/c/pp_errors.h" | 11 #include "ppapi/c/pp_errors.h" |
| 12 #include "ppapi/shared_impl/tracked_callback.h" | 12 #include "ppapi/shared_impl/tracked_callback.h" |
| 13 #include "ppapi/thunk/enter.h" | 13 #include "ppapi/thunk/enter.h" |
| 14 #include "ppapi/thunk/ppapi_thunk_export.h" | 14 #include "ppapi/thunk/ppapi_thunk_export.h" |
| 15 #include "ppapi/thunk/ppb_printing_api.h" | 15 #include "ppapi/thunk/ppb_printing_api.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 32 struct PP_CompletionCallback callback) { | 32 struct PP_CompletionCallback callback) { |
| 33 VLOG(4) << "PPB_Printing_Dev::GetDefaultPrintSettings()"; | 33 VLOG(4) << "PPB_Printing_Dev::GetDefaultPrintSettings()"; |
| 34 EnterResource<PPB_Printing_API> enter(resource, callback, true); | 34 EnterResource<PPB_Printing_API> enter(resource, callback, true); |
| 35 if (enter.failed()) | 35 if (enter.failed()) |
| 36 return enter.retval(); | 36 return enter.retval(); |
| 37 return enter.SetResult(enter.object()->GetDefaultPrintSettings( | 37 return enter.SetResult(enter.object()->GetDefaultPrintSettings( |
| 38 print_settings, enter.callback())); | 38 print_settings, enter.callback())); |
| 39 } | 39 } |
| 40 | 40 |
| 41 const PPB_Printing_Dev_0_7 g_ppb_printing_dev_thunk_0_7 = { | 41 const PPB_Printing_Dev_0_7 g_ppb_printing_dev_thunk_0_7 = { |
| 42 &Create, | 42 &Create, &GetDefaultPrintSettings}; |
| 43 &GetDefaultPrintSettings}; | |
| 44 | 43 |
| 45 } // namespace | 44 } // namespace |
| 46 | 45 |
| 47 PPAPI_THUNK_EXPORT const PPB_Printing_Dev_0_7* GetPPB_Printing_Dev_0_7_Thunk() { | 46 PPAPI_THUNK_EXPORT const PPB_Printing_Dev_0_7* GetPPB_Printing_Dev_0_7_Thunk() { |
| 48 return &g_ppb_printing_dev_thunk_0_7; | 47 return &g_ppb_printing_dev_thunk_0_7; |
| 49 } | 48 } |
| 50 | 49 |
| 51 } // namespace thunk | 50 } // namespace thunk |
| 52 } // namespace ppapi | 51 } // namespace ppapi |
| OLD | NEW |