summaryrefslogtreecommitdiffstats
path: root/ppapi/api
diff options
context:
space:
mode:
authorteravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-25 22:39:15 +0000
committerteravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-25 22:39:15 +0000
commit7310b16441368a374999e31dbe0b583836c6fe9d (patch)
tree3ccf19891ef60d2363c17c501ae6095bd7ccd428 /ppapi/api
parent9430533e5fda7d6a40d37f848eab416433fbf22a (diff)
downloadchromium_src-7310b16441368a374999e31dbe0b583836c6fe9d.zip
chromium_src-7310b16441368a374999e31dbe0b583836c6fe9d.tar.gz
chromium_src-7310b16441368a374999e31dbe0b583836c6fe9d.tar.bz2
Pepper: Move PPB_Testing_Dev to Private.
PPB_Testing_Dev will never move to stable, and makes sense more as a private than a trusted API. BUG= Review URL: https://codereview.chromium.org/62703005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237161 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api')
-rw-r--r--ppapi/api/private/ppb_testing_private.idl (renamed from ppapi/api/dev/ppb_testing_dev.idl)14
1 files changed, 3 insertions, 11 deletions
diff --git a/ppapi/api/dev/ppb_testing_dev.idl b/ppapi/api/private/ppb_testing_private.idl
index c114db0..98ddfc8 100644
--- a/ppapi/api/dev/ppb_testing_dev.idl
+++ b/ppapi/api/private/ppb_testing_private.idl
@@ -1,4 +1,4 @@
-/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
+/* Copyright 2013 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -10,14 +10,10 @@
*/
label Chrome {
- M14 = 0.7,
- M15 = 0.8,
- M17 = 0.9,
- M18 = 0.91,
- M28 = 0.92
+ M33 = 1.0
};
-interface PPB_Testing_Dev {
+interface PPB_Testing_Private {
/**
* Reads the bitmap data out of the backing store for the given
* DeviceContext2D and into the given image. If the data was successfully
@@ -102,7 +98,6 @@ interface PPB_Testing_Dev {
* slightly alter the mouse position, due to coordinate transforms it
* performs.
*/
- [version=0.8]
void SimulateInputEvent([in] PP_Instance instance,
[in] PP_Resource input_event);
@@ -113,7 +108,6 @@ interface PPB_Testing_Dev {
* and fill in the components structure. This pointer may be NULL
* to specify that no component information is necessary.
*/
- [version=0.9]
PP_Var GetDocumentURL([in] PP_Instance instance,
[out] PP_URLComponents_Dev components);
@@ -125,7 +119,6 @@ interface PPB_Testing_Dev {
* subset of |array_size| vars is written to |live_vars|. The reference count
* of the returned PP_Vars will *not* be affected by this call.
*/
- [version=0.91]
uint32_t GetLiveVars([size_as=array_size] PP_Var[] live_vars,
[in] uint32_t array_size);
@@ -136,7 +129,6 @@ interface PPB_Testing_Dev {
* (in order to have fast tests). Passing a value of 0 resets the threshold
* to its default. The threshold is in bytes.
*/
- [version=0.92]
void SetMinimumArrayBufferSizeForShmem([in] PP_Instance instance,
[in] uint32_t threshold);
};