Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2087)

Unified Diff: ppapi/thunk/ppb_instance_api.h

Issue 11039012: Implement plugin side of sync EnumerateVideoCaptureDevices (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ppapi/thunk/ppb_instance_api.h
diff --git a/ppapi/thunk/ppb_instance_api.h b/ppapi/thunk/ppb_instance_api.h
index 94640e8b7ee73311ca9fc5b8193cc16aa6863fc6..603afbd3d97ca91f7349ec50fbf62b4a35a658e8 100644
--- a/ppapi/thunk/ppb_instance_api.h
+++ b/ppapi/thunk/ppb_instance_api.h
@@ -36,6 +36,7 @@ struct ViewData;
namespace thunk {
class PPB_Flash_API;
+class PPB_Flash_Functions_API;
class PPB_Gamepad_API;
class PPB_Instance_API {
@@ -86,8 +87,11 @@ class PPB_Instance_API {
PP_Bool fullscreen) = 0;
virtual PP_Bool GetScreenSize(PP_Instance instance, PP_Size* size) = 0;
- // Flash.
+ // Flash (Deprecated for Flash_Functions).
virtual PPB_Flash_API* GetFlashAPI() = 0;
+ // Flash_Functions
+ virtual PPB_Flash_Functions_API* GetFlashFunctionsAPI(
+ PP_Instance instance) = 0;
// Gamepad.
virtual PPB_Gamepad_API* GetGamepadAPI(PP_Instance instance) = 0;

Powered by Google App Engine
This is Rietveld 408576698