OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_FILE_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_FLASH_FILE_IMPL_H_ |
6 #define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_FILE_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_FILE_IMPL_H_ |
7 | 7 |
| 8 struct PPB_Flash_File_FileRef; |
8 struct PPB_Flash_File_ModuleLocal; | 9 struct PPB_Flash_File_ModuleLocal; |
9 | 10 |
10 namespace webkit { | 11 namespace webkit { |
11 namespace ppapi { | 12 namespace ppapi { |
12 | 13 |
13 class PPB_Flash_File_ModuleLocal_Impl { | 14 class PPB_Flash_File_ModuleLocal_Impl { |
14 public: | 15 public: |
15 static const PPB_Flash_File_ModuleLocal* GetInterface(); | 16 static const PPB_Flash_File_ModuleLocal* GetInterface(); |
16 }; | 17 }; |
17 | 18 |
| 19 class PPB_Flash_File_FileRef_Impl { |
| 20 public: |
| 21 static const PPB_Flash_File_FileRef* GetInterface(); |
| 22 }; |
| 23 |
18 } // namespace ppapi | 24 } // namespace ppapi |
19 } // namespace webkit | 25 } // namespace webkit |
20 | 26 |
21 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_FILE_IMPL_H_ | 27 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_FILE_IMPL_H_ |
OLD | NEW |