summaryrefslogtreecommitdiffstats
path: root/packages/services/Proxy
diff options
context:
space:
mode:
authorJason Monk <jmonk@google.com>2013-08-12 16:42:38 -0400
committerJason Monk <jmonk@google.com>2013-08-20 17:36:39 -0400
commit9ced3cd9d6ea414523051ec872fffc68f5fdbf08 (patch)
tree22d49c8bde1a17da9c9ff1588a3af3e176d0173a /packages/services/Proxy
parent58514937628dfcf3b2949e4cbc45d5526ecb8019 (diff)
downloadframeworks_base-9ced3cd9d6ea414523051ec872fffc68f5fdbf08.zip
frameworks_base-9ced3cd9d6ea414523051ec872fffc68f5fdbf08.tar.gz
frameworks_base-9ced3cd9d6ea414523051ec872fffc68f5fdbf08.tar.bz2
Change PacProcessor to Android Service
This switches the PacProcessor over to an Android Service. The service is bound and unbound by the PacManager, which also adds it to the ServiceManager, allowing for Context-Free access by the PacProxySelector in all DVMs. bug:10182711 Change-Id: Id1ff7660be56e8976cdcccd76e041feb47a17a61
Diffstat (limited to 'packages/services/Proxy')
-rw-r--r--packages/services/Proxy/com/android/net/IProxyService.aidl16
1 files changed, 0 insertions, 16 deletions
diff --git a/packages/services/Proxy/com/android/net/IProxyService.aidl b/packages/services/Proxy/com/android/net/IProxyService.aidl
deleted file mode 100644
index 7e9ed79..0000000
--- a/packages/services/Proxy/com/android/net/IProxyService.aidl
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.android.net;
-
-/** @hide */
-interface IProxyService
-{
- /**
- * Keep up-to-date with
- * frameworks/base/packages/services/PacProcessor/IProxyService.h
- */
- String resolvePacFile(String host, String url);
-
- int setPacFile(String scriptContents);
-
- int startPacSystem();
- int stopPacSystem();
-}