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

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

Issue 15491006: Rename PPB_Flash_DeviceID interface to PPB_Flash_DRM (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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/api/private/ppb_flash_drm.idl
diff --git a/ppapi/api/private/ppb_flash_device_id.idl b/ppapi/api/private/ppb_flash_drm.idl
similarity index 64%
copy from ppapi/api/private/ppb_flash_device_id.idl
copy to ppapi/api/private/ppb_flash_drm.idl
index 1fa49865bfcb179c96daeaf3f95181b25362238c..2035e9693170007c4bff9ca4fd91174c569f0c8e 100644
--- a/ppapi/api/private/ppb_flash_device_id.idl
+++ b/ppapi/api/private/ppb_flash_drm.idl
@@ -4,16 +4,23 @@
*/
/**
- * This file contains the <code>PPB_Flash_DeviceID</code> interface.
+ * This file contains the <code>PPB_Flash_DRM</code> interface.
*/
[generate_thunk]
label Chrome {
- M21 = 1.0
+ M29 = 1.0
};
-interface PPB_Flash_DeviceID {
+/**
+ * A resource for performing Flash DRM-related operations.
+ */
+interface PPB_Flash_DRM {
+ /**
+ * Create a PPB_Flash_DRM resource for performing DRM-related operations in
yzshen1 2013/05/21 06:32:31 Create -> Creates
raymes 2013/05/21 16:32:51 Done.
+ * Flash.
+ */
PP_Resource Create([in] PP_Instance instance);
/**
@@ -21,7 +28,7 @@ interface PPB_Flash_DeviceID {
* string in |*id| and will call the completion callback. On failure the
* given var will be PP_VARTYPE_UNDEFINED.
*/
- int32_t GetDeviceID([in] PP_Resource device_id,
+ int32_t GetDeviceID([in] PP_Resource drm,
[out] PP_Var id,
[in] PP_CompletionCallback callback);
};

Powered by Google App Engine
This is Rietveld 408576698