| 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 WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 virtual int32_t DeleteFileOrDir(PP_Instance instance, | 82 virtual int32_t DeleteFileOrDir(PP_Instance instance, |
| 83 const char* path, | 83 const char* path, |
| 84 PP_Bool recursive) OVERRIDE; | 84 PP_Bool recursive) OVERRIDE; |
| 85 virtual int32_t CreateDir(PP_Instance instance, const char* path) OVERRIDE; | 85 virtual int32_t CreateDir(PP_Instance instance, const char* path) OVERRIDE; |
| 86 virtual int32_t QueryFile(PP_Instance instance, | 86 virtual int32_t QueryFile(PP_Instance instance, |
| 87 const char* path, | 87 const char* path, |
| 88 PP_FileInfo* info) OVERRIDE; | 88 PP_FileInfo* info) OVERRIDE; |
| 89 virtual int32_t GetDirContents(PP_Instance instance, | 89 virtual int32_t GetDirContents(PP_Instance instance, |
| 90 const char* path, | 90 const char* path, |
| 91 PP_DirContents_Dev** contents) OVERRIDE; | 91 PP_DirContents_Dev** contents) OVERRIDE; |
| 92 virtual int32_t CreateTemporaryFile(PP_Instance instance, |
| 93 PP_FileHandle* file) OVERRIDE; |
| 92 virtual int32_t OpenFileRef(PP_Instance instance, | 94 virtual int32_t OpenFileRef(PP_Instance instance, |
| 93 PP_Resource file_ref, | 95 PP_Resource file_ref, |
| 94 int32_t mode, | 96 int32_t mode, |
| 95 PP_FileHandle* file) OVERRIDE; | 97 PP_FileHandle* file) OVERRIDE; |
| 96 virtual int32_t QueryFileRef(PP_Instance instance, | 98 virtual int32_t QueryFileRef(PP_Instance instance, |
| 97 PP_Resource file_ref, | 99 PP_Resource file_ref, |
| 98 PP_FileInfo* info) OVERRIDE; | 100 PP_FileInfo* info) OVERRIDE; |
| 99 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE; | 101 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE; |
| 100 virtual PP_Bool FlashSetFullscreen(PP_Instance instance, | 102 virtual PP_Bool FlashSetFullscreen(PP_Instance instance, |
| 101 PP_Bool fullscreen) OVERRIDE; | 103 PP_Bool fullscreen) OVERRIDE; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 116 // This object is lazily created by InitClipboard. | 118 // This object is lazily created by InitClipboard. |
| 117 scoped_ptr<webkit_glue::ClipboardClient> clipboard_client_; | 119 scoped_ptr<webkit_glue::ClipboardClient> clipboard_client_; |
| 118 | 120 |
| 119 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl); | 121 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl); |
| 120 }; | 122 }; |
| 121 | 123 |
| 122 } // namespace ppapi | 124 } // namespace ppapi |
| 123 } // namespace webkit | 125 } // namespace webkit |
| 124 | 126 |
| 125 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ | 127 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ |
| OLD | NEW |