OLD | NEW |
| (Empty) |
1 // Copyright 2013 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. | |
4 | |
5 #ifndef PPAPI_SHARED_IMPL_FILE_REF_DETAILED_INFO_H | |
6 #define PPAPI_SHARED_IMPL_FILE_REF_DETAILED_INFO_H | |
7 | |
8 #include <string> | |
9 | |
10 #include "base/files/file_path.h" | |
11 #include "ppapi/c/pp_file_info.h" | |
12 #include "ppapi/c/pp_resource.h" | |
13 | |
14 namespace ppapi { | |
15 | |
16 // This structure is only used for exchanging information about FileRefs from | |
17 // the browser to the renderer. | |
18 struct FileRefDetailedInfo { | |
19 // This struct doesn't hold a ref on this resource. | |
20 PP_Resource resource; | |
21 PP_FileSystemType file_system_type; | |
22 std::string file_system_url_spec; | |
23 base::FilePath external_path; | |
24 }; | |
25 | |
26 } // namespace ppapi | |
27 | |
28 #endif // PPAPI_SHARED_IMPL_FILE_REF_DETAILED_INFO_H | |
OLD | NEW |