Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Side by Side Diff: ppapi/thunk/ppb_file_chooser_dev_thunk.cc

Issue 1778683003: Ran ppapi/generators/generator.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 Fri Feb 7 08:29:41 2014. 5 // From dev/ppb_file_chooser_dev.idl modified Tue Mar 25 14:43:09 2014.
6
7 #include <stdint.h>
8 6
9 #include "ppapi/c/dev/ppb_file_chooser_dev.h" 7 #include "ppapi/c/dev/ppb_file_chooser_dev.h"
10 #include "ppapi/c/pp_completion_callback.h" 8 #include "ppapi/c/pp_completion_callback.h"
11 #include "ppapi/c/pp_errors.h" 9 #include "ppapi/c/pp_errors.h"
12 #include "ppapi/shared_impl/tracked_callback.h" 10 #include "ppapi/shared_impl/tracked_callback.h"
13 #include "ppapi/thunk/enter.h" 11 #include "ppapi/thunk/enter.h"
14 #include "ppapi/thunk/ppapi_thunk_export.h" 12 #include "ppapi/thunk/ppapi_thunk_export.h"
15 #include "ppapi/thunk/ppb_file_chooser_api.h" 13 #include "ppapi/thunk/ppb_file_chooser_api.h"
16 14
17 namespace ppapi { 15 namespace ppapi {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 int32_t Show(PP_Resource chooser, 52 int32_t Show(PP_Resource chooser,
55 struct PP_ArrayOutput output, 53 struct PP_ArrayOutput output,
56 struct PP_CompletionCallback callback) { 54 struct PP_CompletionCallback callback) {
57 VLOG(4) << "PPB_FileChooser_Dev::Show()"; 55 VLOG(4) << "PPB_FileChooser_Dev::Show()";
58 EnterResource<PPB_FileChooser_API> enter(chooser, callback, true); 56 EnterResource<PPB_FileChooser_API> enter(chooser, callback, true);
59 if (enter.failed()) 57 if (enter.failed())
60 return enter.retval(); 58 return enter.retval();
61 return enter.SetResult(enter.object()->Show(output, enter.callback())); 59 return enter.SetResult(enter.object()->Show(output, enter.callback()));
62 } 60 }
63 61
64 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 = {
65 {&Create, &IsFileChooser, &Show_0_5, &GetNextChosenFile}; 63 &Create, &IsFileChooser, &Show_0_5, &GetNextChosenFile};
66 64
67 const PPB_FileChooser_Dev_0_6 g_ppb_filechooser_dev_thunk_0_6 = {&Create, 65 const PPB_FileChooser_Dev_0_6 g_ppb_filechooser_dev_thunk_0_6 = {
68 &IsFileChooser, 66 &Create, &IsFileChooser, &Show};
69 &Show};
70 67
71 } // namespace 68 } // namespace
72 69
73 PPAPI_THUNK_EXPORT const PPB_FileChooser_Dev_0_5* 70 PPAPI_THUNK_EXPORT const PPB_FileChooser_Dev_0_5*
74 GetPPB_FileChooser_Dev_0_5_Thunk() { 71 GetPPB_FileChooser_Dev_0_5_Thunk() {
75 return &g_ppb_filechooser_dev_thunk_0_5; 72 return &g_ppb_filechooser_dev_thunk_0_5;
76 } 73 }
77 74
78 PPAPI_THUNK_EXPORT const PPB_FileChooser_Dev_0_6* 75 PPAPI_THUNK_EXPORT const PPB_FileChooser_Dev_0_6*
79 GetPPB_FileChooser_Dev_0_6_Thunk() { 76 GetPPB_FileChooser_Dev_0_6_Thunk() {
80 return &g_ppb_filechooser_dev_thunk_0_6; 77 return &g_ppb_filechooser_dev_thunk_0_6;
81 } 78 }
82 79
83 } // namespace thunk 80 } // namespace thunk
84 } // namespace ppapi 81 } // namespace ppapi
OLDNEW
« no previous file with comments | « ppapi/thunk/ppb_display_color_profile_private_thunk.cc ('k') | ppapi/thunk/ppb_file_chooser_trusted_thunk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698