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

Unified Diff: ppapi/api/private/ppb_flash_drm.idl

Issue 68773004: Pepper: Add MonitorIsExternal function to PPB_Flash_DRM. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix TODO, interface ordering.x Created 7 years, 1 month 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
« no previous file with comments | « chrome/browser/renderer_host/pepper/pepper_flash_drm_host.cc ('k') | ppapi/c/private/ppb_flash_drm.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/private/ppb_flash_drm.idl
diff --git a/ppapi/api/private/ppb_flash_drm.idl b/ppapi/api/private/ppb_flash_drm.idl
index 3131972406fb477639385c7574c78b39dec261f2..c6f6efff5ae36cfde436afc707fef3123f617ebb 100644
--- a/ppapi/api/private/ppb_flash_drm.idl
+++ b/ppapi/api/private/ppb_flash_drm.idl
@@ -10,7 +10,8 @@
[generate_thunk]
label Chrome {
- M29 = 1.0
+ M29 = 1.0,
+ M33 = 1.1
};
/**
@@ -48,5 +49,15 @@ interface PPB_Flash_DRM {
int32_t GetVoucherFile([in] PP_Resource drm,
[out] PP_Resource file_ref,
[in] PP_CompletionCallback callback);
+
+ /**
+ * Asynchronously returns a value indicating whether the monitor on which the
+ * plugin instance is displayed is external. |callback| will be called upon
+ * completion.
+ */
+ [version=1.1]
+ int32_t MonitorIsExternal([in] PP_Resource drm,
+ [out] PP_Bool is_external,
+ [in] PP_CompletionCallback callback);
};
« no previous file with comments | « chrome/browser/renderer_host/pepper/pepper_flash_drm_host.cc ('k') | ppapi/c/private/ppb_flash_drm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698