5dffc7ccf748a3ed881c58e66f500cc0cdbecee4
[platform/framework/web/crosswalk.git] / src / ppapi / thunk / ppb_printing_dev_thunk.cc
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 May  7 14:43:00 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
20 PP_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
28 int32_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, enter.callback()));
37 }
38
39 const PPB_Printing_Dev_0_7 g_ppb_printing_dev_thunk_0_7 = {
40     &Create,
41     &GetDefaultPrintSettings};
42
43 }  // namespace
44
45 PPAPI_THUNK_EXPORT const PPB_Printing_Dev_0_7* GetPPB_Printing_Dev_0_7_Thunk() {
46   return &g_ppb_printing_dev_thunk_0_7;
47 }
48
49 }  // namespace thunk
50 }  // namespace ppapi