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

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

Issue 238923007: PPAPI: Format ppapi/thunk using clang-format. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 6 years, 1 month 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 | Annotate | Revision Log
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 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
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, &IsFileChooser, &Show_0_5, &GetNextChosenFile};
64 &IsFileChooser,
65 &Show_0_5,
66 &GetNextChosenFile
67 };
68 64
69 const PPB_FileChooser_Dev_0_6 g_ppb_filechooser_dev_thunk_0_6 = { 65 const PPB_FileChooser_Dev_0_6 g_ppb_filechooser_dev_thunk_0_6 = {&Create,
70 &Create, 66 &IsFileChooser,
71 &IsFileChooser, 67 &Show};
72 &Show
73 };
74 68
75 } // namespace 69 } // namespace
76 70
77 PPAPI_THUNK_EXPORT const PPB_FileChooser_Dev_0_5* 71 PPAPI_THUNK_EXPORT const PPB_FileChooser_Dev_0_5*
78 GetPPB_FileChooser_Dev_0_5_Thunk() { 72 GetPPB_FileChooser_Dev_0_5_Thunk() {
79 return &g_ppb_filechooser_dev_thunk_0_5; 73 return &g_ppb_filechooser_dev_thunk_0_5;
80 } 74 }
81 75
82 PPAPI_THUNK_EXPORT const PPB_FileChooser_Dev_0_6* 76 PPAPI_THUNK_EXPORT const PPB_FileChooser_Dev_0_6*
83 GetPPB_FileChooser_Dev_0_6_Thunk() { 77 GetPPB_FileChooser_Dev_0_6_Thunk() {
84 return &g_ppb_filechooser_dev_thunk_0_6; 78 return &g_ppb_filechooser_dev_thunk_0_6;
85 } 79 }
86 80
87 } // namespace thunk 81 } // namespace thunk
88 } // namespace ppapi 82 } // 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