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_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 "build/build_config.h" | 9 #include "build/build_config.h" |
10 #include "ppapi/c/pp_point.h" | 10 #include "ppapi/c/pp_point.h" |
11 #include "ppapi/c/pp_rect.h" | 11 #include "ppapi/c/pp_rect.h" |
12 #include "ppapi/c/private/ppb_flash.h" | 12 #include "ppapi/c/private/ppb_flash.h" |
13 | 13 |
14 namespace webkit { | 14 namespace webkit { |
15 namespace ppapi { | 15 namespace ppapi { |
16 | 16 |
17 class PPB_Flash_Impl { | 17 class PPB_Flash_Impl { |
18 public: | 18 public: |
19 // Returns a pointer to the interface implementing PPB_Flash that is | 19 // Returns a pointer to the interface implementing PPB_Flash that is |
20 // exposed to the plugin. | 20 // exposed to the plugin. |
21 static const PPB_Flash_11* GetInterface11(); | 21 static const PPB_Flash_11* GetInterface11(); |
22 static const PPB_Flash* GetInterface12(); | 22 static const PPB_Flash_12_0* GetInterface12_0(); |
23 | 23 |
24 private: | 24 private: |
25 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl); | 25 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Impl); |
26 }; | 26 }; |
27 | 27 |
28 } // namespace ppapi | 28 } // namespace ppapi |
29 } // namespace webkit | 29 } // namespace webkit |
30 | 30 |
31 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ | 31 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_IMPL_H_ |
OLD | NEW |