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