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 #include "ppapi/c/dev/ppb_directory_reader_dev.h" | |
6 #include "ppapi/c/pp_completion_callback.h" | 5 #include "ppapi/c/pp_completion_callback.h" |
7 #include "ppapi/c/pp_errors.h" | 6 #include "ppapi/c/pp_errors.h" |
| 7 #include "ppapi/c/ppb_directory_reader.h" |
8 #include "ppapi/shared_impl/proxy_lock.h" | 8 #include "ppapi/shared_impl/proxy_lock.h" |
9 #include "ppapi/shared_impl/tracked_callback.h" | 9 #include "ppapi/shared_impl/tracked_callback.h" |
10 #include "ppapi/thunk/enter.h" | 10 #include "ppapi/thunk/enter.h" |
11 #include "ppapi/thunk/thunk.h" | 11 #include "ppapi/thunk/thunk.h" |
12 #include "ppapi/thunk/ppb_directory_reader_api.h" | 12 #include "ppapi/thunk/ppb_directory_reader_api.h" |
13 #include "ppapi/thunk/resource_creation_api.h" | 13 #include "ppapi/thunk/resource_creation_api.h" |
14 | 14 |
15 namespace ppapi { | 15 namespace ppapi { |
16 namespace thunk { | 16 namespace thunk { |
17 | 17 |
(...skipping 20 matching lines...) Expand all Loading... |
38 int32_t ReadEntries(PP_Resource directory_reader, | 38 int32_t ReadEntries(PP_Resource directory_reader, |
39 PP_ArrayOutput output, | 39 PP_ArrayOutput output, |
40 PP_CompletionCallback callback) { | 40 PP_CompletionCallback callback) { |
41 EnterResource<PPB_DirectoryReader_API> enter( | 41 EnterResource<PPB_DirectoryReader_API> enter( |
42 directory_reader, callback, true); | 42 directory_reader, callback, true); |
43 if (enter.failed()) | 43 if (enter.failed()) |
44 return enter.retval(); | 44 return enter.retval(); |
45 return enter.SetResult(enter.object()->ReadEntries(output, enter.callback())); | 45 return enter.SetResult(enter.object()->ReadEntries(output, enter.callback())); |
46 } | 46 } |
47 | 47 |
48 const PPB_DirectoryReader_Dev g_ppb_directory_reader_thunk = { | 48 const PPB_DirectoryReader g_ppb_directory_reader_thunk = { |
49 &Create, | 49 &Create, |
50 &IsDirectoryReader, | 50 &IsDirectoryReader, |
51 &ReadEntries | 51 &ReadEntries |
52 }; | 52 }; |
53 | 53 |
54 } // namespace | 54 } // namespace |
55 | 55 |
56 const PPB_DirectoryReader_Dev_0_6* GetPPB_DirectoryReader_Dev_0_6_Thunk() { | 56 const PPB_DirectoryReader_1_0* GetPPB_DirectoryReader_1_0_Thunk() { |
57 return &g_ppb_directory_reader_thunk; | 57 return &g_ppb_directory_reader_thunk; |
58 } | 58 } |
59 | 59 |
60 } // namespace thunk | 60 } // namespace thunk |
61 } // namespace ppapi | 61 } // namespace ppapi |
OLD | NEW |