summaryrefslogtreecommitdiffstats
path: root/ppapi/api/dev
diff options
context:
space:
mode:
authordmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-25 17:12:01 +0000
committerdmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-25 17:12:01 +0000
commit9bf4d67b23fc871a9d7941f6b3abe19ecdae22fa (patch)
treec0cb063692e5aed7f81c27ef6282567be142aeee /ppapi/api/dev
parent0d26489735be545dce0fd94913a7f5e2fca5e951 (diff)
downloadchromium_src-9bf4d67b23fc871a9d7941f6b3abe19ecdae22fa.zip
chromium_src-9bf4d67b23fc871a9d7941f6b3abe19ecdae22fa.tar.gz
chromium_src-9bf4d67b23fc871a9d7941f6b3abe19ecdae22fa.tar.bz2
PPAPI: Move PPB_NetworkProxy out of Dev
This depends on the following CLs: https://codereview.chromium.org/17094022/ https://codereview.chromium.org/16819002/ BUG=247225 Review URL: https://chromiumcodereview.appspot.com/17004010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208513 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api/dev')
-rw-r--r--ppapi/api/dev/ppb_network_proxy_dev.idl27
1 files changed, 0 insertions, 27 deletions
diff --git a/ppapi/api/dev/ppb_network_proxy_dev.idl b/ppapi/api/dev/ppb_network_proxy_dev.idl
deleted file mode 100644
index d86836f..0000000
--- a/ppapi/api/dev/ppb_network_proxy_dev.idl
+++ /dev/null
@@ -1,27 +0,0 @@
-/* Copyright (c) 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.
- */
-
-/**
- * This file defines the <code>PPB_NetworkProxy_Dev</code> interface.
- */
-
-[generate_thunk]
-
-label Chrome {
- M29 = 0.1
-};
-
-[singleton]
-interface PPB_NetworkProxy_Dev {
- /**
- * Retrieves the proxy that will be used for the given URL. The result will
- * be a string in PAC format. For more details about PAC format, please see
- * http://en.wikipedia.org/wiki/Proxy_auto-config
- */
- int32_t GetProxyForURL([in] PP_Instance instance,
- [in] PP_Var url,
- [out] PP_Var proxy_string,
- [in] PP_CompletionCallback callback);
-};