Revert 168224 - Update V8 to version 3.15.4.
[chromium-blink-merge.git] / ppapi / thunk / ppb_flash_file_modulelocal_thunk.cc
blob7e9678a91e76d23e8777c6884152a75a3bf2992f
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.
5 #include "ppapi/c/pp_errors.h"
6 #include "ppapi/c/private/ppb_flash_file.h"
7 #include "ppapi/thunk/enter.h"
8 #include "ppapi/thunk/ppb_flash_api.h"
9 #include "ppapi/thunk/ppb_instance_api.h"
10 #include "ppapi/thunk/thunk.h"
12 namespace ppapi {
13 namespace thunk {
15 namespace {
17 bool CreateThreadAdapterForInstance(PP_Instance instance) {
18 EnterInstance enter(instance);
19 if (enter.failed())
20 return false;
21 return enter.functions()->GetFlashAPI()->CreateThreadAdapterForInstance(
22 instance);
25 void ClearThreadAdapterForInstance(PP_Instance instance) {
26 EnterInstance enter(instance);
27 if (enter.succeeded()) {
28 return enter.functions()->GetFlashAPI()->ClearThreadAdapterForInstance(
29 instance);
33 int32_t OpenFile(PP_Instance instance,
34 const char* path,
35 int32_t mode,
36 PP_FileHandle* file) {
37 EnterInstance enter(instance);
38 if (enter.failed())
39 return PP_ERROR_BADARGUMENT;
40 return enter.functions()->GetFlashAPI()->OpenFile(instance, path, mode, file);
43 int32_t RenameFile(PP_Instance instance,
44 const char* path_from,
45 const char* path_to) {
46 EnterInstance enter(instance);
47 if (enter.failed())
48 return PP_ERROR_BADARGUMENT;
49 return enter.functions()->GetFlashAPI()->RenameFile(instance,
50 path_from, path_to);
53 int32_t DeleteFileOrDir(PP_Instance instance,
54 const char* path,
55 PP_Bool recursive) {
56 EnterInstance enter(instance);
57 if (enter.failed())
58 return PP_ERROR_BADARGUMENT;
59 return enter.functions()->GetFlashAPI()->DeleteFileOrDir(instance, path,
60 recursive);
63 int32_t CreateDir(PP_Instance instance, const char* path) {
64 EnterInstance enter(instance);
65 if (enter.failed())
66 return PP_ERROR_BADARGUMENT;
67 return enter.functions()->GetFlashAPI()->CreateDir(instance, path);
70 int32_t QueryFile(PP_Instance instance, const char* path, PP_FileInfo* info) {
71 EnterInstance enter(instance);
72 if (enter.failed())
73 return PP_ERROR_BADARGUMENT;
74 return enter.functions()->GetFlashAPI()->QueryFile(instance, path, info);
77 int32_t GetDirContents(PP_Instance instance,
78 const char* path,
79 PP_DirContents_Dev** contents) {
80 EnterInstance enter(instance);
81 if (enter.failed())
82 return PP_ERROR_BADARGUMENT;
83 return enter.functions()->GetFlashAPI()->GetDirContents(instance, path,
84 contents);
87 void FreeDirContents(PP_Instance instance,
88 PP_DirContents_Dev* contents) {
89 EnterInstance enter(instance);
90 if (enter.succeeded())
91 enter.functions()->GetFlashAPI()->FreeDirContents(instance, contents);
94 int32_t CreateTemporaryFile(PP_Instance instance, PP_FileHandle* file) {
95 EnterInstance enter(instance);
96 if (enter.failed())
97 return PP_ERROR_BADARGUMENT;
99 *file = PP_kInvalidFileHandle;
100 return enter.functions()->GetFlashAPI()->CreateTemporaryFile(instance, file);
103 const PPB_Flash_File_ModuleLocal_2_0 g_ppb_flash_file_modulelocal_thunk_2_0 = {
104 &CreateThreadAdapterForInstance,
105 &ClearThreadAdapterForInstance,
106 &OpenFile,
107 &RenameFile,
108 &DeleteFileOrDir,
109 &CreateDir,
110 &QueryFile,
111 &GetDirContents,
112 &FreeDirContents
115 const PPB_Flash_File_ModuleLocal_3_0 g_ppb_flash_file_modulelocal_thunk_3_0 = {
116 &CreateThreadAdapterForInstance,
117 &ClearThreadAdapterForInstance,
118 &OpenFile,
119 &RenameFile,
120 &DeleteFileOrDir,
121 &CreateDir,
122 &QueryFile,
123 &GetDirContents,
124 &FreeDirContents,
125 &CreateTemporaryFile
128 } // namespace
130 const PPB_Flash_File_ModuleLocal_2_0*
131 GetPPB_Flash_File_ModuleLocal_2_0_Thunk() {
132 return &g_ppb_flash_file_modulelocal_thunk_2_0;
135 const PPB_Flash_File_ModuleLocal_3_0*
136 GetPPB_Flash_File_ModuleLocal_3_0_Thunk() {
137 return &g_ppb_flash_file_modulelocal_thunk_3_0;
140 } // namespace thunk
141 } // namespace ppapi