| 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 #ifndef PPAPI_CPP_PRIVATE_FLASH_FILE_H_ | 5 #ifndef PPAPI_CPP_PRIVATE_FLASH_FILE_H_ |
| 6 #define PPAPI_CPP_PRIVATE_FLASH_FILE_H_ | 6 #define PPAPI_CPP_PRIVATE_FLASH_FILE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 11 #include "ppapi/c/private/ppb_flash_file.h" | 13 #include "ppapi/c/private/ppb_flash_file.h" |
| 12 | 14 |
| 13 namespace pp { | 15 namespace pp { |
| 14 | 16 |
| 15 class FileRef; | 17 class FileRef; |
| 16 class InstanceHandle; | 18 class InstanceHandle; |
| 17 | 19 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 static PP_FileHandle OpenFile(const pp::FileRef& resource, | 65 static PP_FileHandle OpenFile(const pp::FileRef& resource, |
| 64 int32_t mode); | 66 int32_t mode); |
| 65 static bool QueryFile(const pp::FileRef& resource, | 67 static bool QueryFile(const pp::FileRef& resource, |
| 66 PP_FileInfo* info); | 68 PP_FileInfo* info); |
| 67 }; | 69 }; |
| 68 | 70 |
| 69 } // namespace flash | 71 } // namespace flash |
| 70 } // namespace pp | 72 } // namespace pp |
| 71 | 73 |
| 72 #endif // PPAPI_CPP_PRIVATE_FLASH_FILE_H_ | 74 #endif // PPAPI_CPP_PRIVATE_FLASH_FILE_H_ |
| OLD | NEW |