summaryrefslogtreecommitdiffstats
path: root/ppapi/api/ppb_instance.idl
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-10 23:47:01 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-10 23:47:01 +0000
commit94b0625a464ba5fa6a55f6e57927acd9895a49c1 (patch)
treedf81bbece1f031fa6dacf9f175c8a95fdd8e4700 /ppapi/api/ppb_instance.idl
parentf237b6f9d8693d482c76e32ac5a25b701a00d1c0 (diff)
downloadchromium_src-94b0625a464ba5fa6a55f6e57927acd9895a49c1.zip
chromium_src-94b0625a464ba5fa6a55f6e57927acd9895a49c1.tar.gz
chromium_src-94b0625a464ba5fa6a55f6e57927acd9895a49c1.tar.bz2
Remove PPB_Instance 0.5
This wasn't even implemented by the browser any more. BUG= Review URL: https://codereview.chromium.org/11475038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@172187 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api/ppb_instance.idl')
-rw-r--r--ppapi/api/ppb_instance.idl15
1 files changed, 0 insertions, 15 deletions
diff --git a/ppapi/api/ppb_instance.idl b/ppapi/api/ppb_instance.idl
index 2eb34600d..de20dee 100644
--- a/ppapi/api/ppb_instance.idl
+++ b/ppapi/api/ppb_instance.idl
@@ -10,7 +10,6 @@
*/
label Chrome {
- M13 = 0.5,
M14 = 1.0
};
@@ -19,14 +18,6 @@ label Chrome {
* related to the module instance on a web page.
*/
interface PPB_Instance {
- /** Deprecated in 1.0 */
- [deprecate=1.0]
- PP_Var GetWindowObject([in] PP_Instance instance);
-
- /** Deprecated in 1.0 */
- [deprecate=1.0]
- PP_Var GetOwnerElementObject([in] PP_Instance instance);
-
/**
* BindGraphics() binds the given graphics as the current display surface.
* The contents of this device is what will be displayed in the instance's
@@ -72,11 +63,5 @@ interface PPB_Instance {
*/
PP_Bool IsFullFrame(
[in] PP_Instance instance);
-
- /** Deprecated in 0.5 */
- [deprecate=0.5]
- PP_Var ExecuteScript([in] PP_Instance instance,
- [in] PP_Var script,
- [out] PP_Var exception);
};