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

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

Issue 29943003: Remove CanChallengePlatform() and CheckPlatformState(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove 0.1 usage. Created 7 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/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..87df6af7e227ee70a8468c9e86f5fbc35a0f5297 100644
--- a/ppapi/api/private/ppb_platform_verification_private.idl
+++ b/ppapi/api/private/ppb_platform_verification_private.idl
@@ -11,7 +11,7 @@
[generate_thunk]
label Chrome {
- M31 = 0.1
+ M32 = 0.2
};
/**
@@ -48,25 +48,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

Powered by Google App Engine
This is Rietveld 408576698