OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_FLASH_FILE_IMPL_H_ | |
6 #define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_FILE_IMPL_H_ | |
7 | |
8 struct PPB_Flash_File_FileRef; | |
9 struct PPB_Flash_File_ModuleLocal; | |
10 | |
11 namespace webkit { | |
12 namespace ppapi { | |
13 | |
14 class PPB_Flash_File_ModuleLocal_Impl { | |
15 public: | |
16 static const PPB_Flash_File_ModuleLocal* GetInterface(); | |
17 }; | |
18 | |
19 class PPB_Flash_File_FileRef_Impl { | |
20 public: | |
21 static const PPB_Flash_File_FileRef* GetInterface(); | |
22 }; | |
23 | |
24 } // namespace ppapi | |
25 } // namespace webkit | |
26 | |
27 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_FILE_IMPL_H_ | |
OLD | NEW |