| 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 LIBRARIES_NACL_IO_PEPPER_INTERFACE_H_ | 5 #ifndef LIBRARIES_NACL_IO_PEPPER_INTERFACE_H_ |
| 6 #define LIBRARIES_NACL_IO_PEPPER_INTERFACE_H_ | 6 #define LIBRARIES_NACL_IO_PEPPER_INTERFACE_H_ |
| 7 | 7 |
| 8 #include <ppapi/c/pp_completion_callback.h> | 8 #include <ppapi/c/pp_completion_callback.h> |
| 9 #include <ppapi/c/pp_file_info.h> | 9 #include <ppapi/c/pp_file_info.h> |
| 10 #include <ppapi/c/pp_instance.h> | 10 #include <ppapi/c/pp_instance.h> |
| 11 #include <ppapi/c/pp_resource.h> | 11 #include <ppapi/c/pp_resource.h> |
| 12 #include <ppapi/c/pp_var.h> | 12 #include <ppapi/c/pp_var.h> |
| 13 #include <ppapi/c/ppb_console.h> | 13 #include <ppapi/c/ppb_console.h> |
| 14 #include <ppapi/c/ppb_file_io.h> | 14 #include <ppapi/c/ppb_file_io.h> |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 private: | 96 private: |
| 97 PepperInterface* ppapi_; | 97 PepperInterface* ppapi_; |
| 98 PP_Resource resource_; | 98 PP_Resource resource_; |
| 99 | 99 |
| 100 DISALLOW_COPY_AND_ASSIGN(ScopedResource); | 100 DISALLOW_COPY_AND_ASSIGN(ScopedResource); |
| 101 }; | 101 }; |
| 102 | 102 |
| 103 } // namespace nacl_io | 103 } // namespace nacl_io |
| 104 | 104 |
| 105 #endif // LIBRARIES_NACL_IO_PEPPER_INTERFACE_H_ | 105 #endif // LIBRARIES_NACL_IO_PEPPER_INTERFACE_H_ |
| OLD | NEW |