| 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_file_chooser_dev.idl modified Tue Aug 20 08:13:36 2013. | 5 // From dev/ppb_file_chooser_dev.idl modified Mon May 6 10:11:29 2013. |
| 6 | 6 |
| 7 #include "ppapi/c/dev/ppb_file_chooser_dev.h" | 7 #include "ppapi/c/dev/ppb_file_chooser_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_file_chooser_api.h" | 13 #include "ppapi/thunk/ppb_file_chooser_api.h" |
| 14 | 14 |
| 15 namespace ppapi { | 15 namespace ppapi { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 int32_t Show(PP_Resource chooser, | 52 int32_t Show(PP_Resource chooser, |
| 53 struct PP_ArrayOutput output, | 53 struct PP_ArrayOutput output, |
| 54 struct PP_CompletionCallback callback) { | 54 struct PP_CompletionCallback callback) { |
| 55 VLOG(4) << "PPB_FileChooser_Dev::Show()"; | 55 VLOG(4) << "PPB_FileChooser_Dev::Show()"; |
| 56 EnterResource<PPB_FileChooser_API> enter(chooser, callback, true); | 56 EnterResource<PPB_FileChooser_API> enter(chooser, callback, true); |
| 57 if (enter.failed()) | 57 if (enter.failed()) |
| 58 return enter.retval(); | 58 return enter.retval(); |
| 59 return enter.SetResult(enter.object()->Show(output, enter.callback())); | 59 return enter.SetResult(enter.object()->Show(output, enter.callback())); |
| 60 } | 60 } |
| 61 | 61 |
| 62 const PPB_FileChooser_Dev_0_5 g_ppb_filechooser_dev_thunk_0_5 = { | 62 const PPB_FileChooser_Dev_0_5 g_ppb_filechooser_dev_thunk_0_5 = { // |
| 63 &Create, | 63 &Create, // |
| 64 &IsFileChooser, | 64 &IsFileChooser, // |
| 65 &Show_0_5, | 65 &Show_0_5, // |
| 66 &GetNextChosenFile | 66 &GetNextChosenFile // |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 const PPB_FileChooser_Dev_0_6 g_ppb_filechooser_dev_thunk_0_6 = { | 69 const PPB_FileChooser_Dev_0_6 g_ppb_filechooser_dev_thunk_0_6 = { // |
| 70 &Create, | 70 &Create, // |
| 71 &IsFileChooser, | 71 &IsFileChooser, // |
| 72 &Show | 72 &Show // |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace | 75 } // namespace |
| 76 | 76 |
| 77 PPAPI_THUNK_EXPORT const PPB_FileChooser_Dev_0_5* | 77 PPAPI_THUNK_EXPORT const PPB_FileChooser_Dev_0_5* |
| 78 GetPPB_FileChooser_Dev_0_5_Thunk() { | 78 GetPPB_FileChooser_Dev_0_5_Thunk() { |
| 79 return &g_ppb_filechooser_dev_thunk_0_5; | 79 return &g_ppb_filechooser_dev_thunk_0_5; |
| 80 } | 80 } |
| 81 | 81 |
| 82 PPAPI_THUNK_EXPORT const PPB_FileChooser_Dev_0_6* | 82 PPAPI_THUNK_EXPORT const PPB_FileChooser_Dev_0_6* |
| 83 GetPPB_FileChooser_Dev_0_6_Thunk() { | 83 GetPPB_FileChooser_Dev_0_6_Thunk() { |
| 84 return &g_ppb_filechooser_dev_thunk_0_6; | 84 return &g_ppb_filechooser_dev_thunk_0_6; |
| 85 } | 85 } |
| 86 | 86 |
| 87 } // namespace thunk | 87 } // namespace thunk |
| 88 } // namespace ppapi | 88 } // namespace ppapi |
| OLD | NEW |