Index: ppapi/api/private/ppb_platform_verification_private.idl |
diff --git a/ppapi/api/private/ppb_platform_verification_private.idl b/ppapi/api/private/ppb_platform_verification_private.idl |
index 86e4d16685b847d55e1c90ba966c2c47cd9b2da8..123ee0abb338e4b00554954dd1b315f6dd7ed033 100644 |
--- a/ppapi/api/private/ppb_platform_verification_private.idl |
+++ b/ppapi/api/private/ppb_platform_verification_private.idl |
@@ -11,7 +11,8 @@ |
[generate_thunk] |
label Chrome { |
- M31 = 0.1 |
+ M31 = 0.1, |
dmichael (off chromium)
2013/10/18 22:00:29
Since you're not providing backwards compatibility
DaleCurtis
2013/10/18 22:07:14
Done.
|
+ M32 = 0.2 |
}; |
/** |
@@ -48,25 +49,6 @@ interface PPB_PlatformVerification_Private { |
PP_Bool IsPlatformVerification([in] PP_Resource resource); |
/** |
- * Check if the underlying host platform can be challenged; i.e., verified as |
- * a trusted platform. Useful for avoiding unnecessary work on platforms |
- * which will always fail; i.e. dev mode Chrome OS. |
- |
- * @param[out] can_challenge_platform A <code>PP_Bool</code> which is set to |
- * <code>PP_TRUE</code> if a platform challenge might pass and |
- * <code>PP_FALSE</code> if it definitely won't. |
- * |
- * @param[in] callback A <code>PP_CompletionCallback</code> to be called after |
- * the method has been completed. This callback will only run if the return |
- * code is <code>PP_OK_COMPLETIONPENDING</code>. |
- * |
- * @return An int32_t containing an error code from <code>pp_errors.h</code>. |
- */ |
- int32_t CanChallengePlatform([in] PP_Resource instance, |
- [out] PP_Bool can_challenge_platform, |
- [in] PP_CompletionCallback callback); |
- |
- /** |
* Requests a platform challenge for a given service id. |
* |
* @param[in] service_id A <code>PP_Var</code> of type |