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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 PP_DirContents_Dev** contents) OVERRIDE; | 75 PP_DirContents_Dev** contents) OVERRIDE; |
76 virtual int32_t CreateTemporaryFile(PP_Instance instance, | 76 virtual int32_t CreateTemporaryFile(PP_Instance instance, |
77 PP_FileHandle* file) OVERRIDE; | 77 PP_FileHandle* file) OVERRIDE; |
78 virtual int32_t OpenFileRef(PP_Instance instance, | 78 virtual int32_t OpenFileRef(PP_Instance instance, |
79 PP_Resource file_ref, | 79 PP_Resource file_ref, |
80 int32_t mode, | 80 int32_t mode, |
81 PP_FileHandle* file) OVERRIDE; | 81 PP_FileHandle* file) OVERRIDE; |
82 virtual int32_t QueryFileRef(PP_Instance instance, | 82 virtual int32_t QueryFileRef(PP_Instance instance, |
83 PP_Resource file_ref, | 83 PP_Resource file_ref, |
84 PP_FileInfo* info) OVERRIDE; | 84 PP_FileInfo* info) OVERRIDE; |
85 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE; | |
86 virtual PP_Bool FlashSetFullscreen(PP_Instance instance, | |
87 PP_Bool fullscreen) OVERRIDE; | |
88 virtual PP_Bool FlashGetScreenSize(PP_Instance instance, | |
89 PP_Size* size) OVERRIDE; | |
90 | 85 |
91 private: | 86 private: |
92 PluginInstance* instance_; | 87 PluginInstance* instance_; |
93 | 88 |
94 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl); | 89 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl); |
95 }; | 90 }; |
96 | 91 |
97 } // namespace ppapi | 92 } // namespace ppapi |
98 } // namespace webkit | 93 } // namespace webkit |
99 | 94 |
100 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ | 95 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ |
OLD | NEW |