summaryrefslogtreecommitdiffstats
path: root/ppapi/c
diff options
context:
space:
mode:
authoryzshen@chromium.org <yzshen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-20 08:12:49 +0000
committeryzshen@chromium.org <yzshen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-20 08:12:49 +0000
commit2469ff2012f52bb57bb7bf1df02d8a72e180075a (patch)
treee475dd0de2bed5d28c752ace1e4d38c0f97e3bdc /ppapi/c
parent2e6810c678edf9de668fa35821dd2c14ab2c19a7 (diff)
downloadchromium_src-2469ff2012f52bb57bb7bf1df02d8a72e180075a.zip
chromium_src-2469ff2012f52bb57bb7bf1df02d8a72e180075a.tar.gz
chromium_src-2469ff2012f52bb57bb7bf1df02d8a72e180075a.tar.bz2
Remove PP_HOSTRESOLVER_FLAGS_LOOPBACK_ONLY from PPB_HostResolver_Dev.
This was first introduced by PPB_HostResolver_Private. It mirrored net::HOST_RESOLVER_LOOPBACK_ONLY. However, it is actually a flag used by the host resolver implementation internally. It doesn't make sense to define this flag, because there is no way for a plugin to detect that only loopback addresses are configured and provide this information to the Pepper API. BUG=247225 TEST=None Review URL: https://chromiumcodereview.appspot.com/16831011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207354 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c')
-rw-r--r--ppapi/c/dev/ppb_host_resolver_dev.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/ppapi/c/dev/ppb_host_resolver_dev.h b/ppapi/c/dev/ppb_host_resolver_dev.h
index b1c01f2..95a992d 100644
--- a/ppapi/c/dev/ppb_host_resolver_dev.h
+++ b/ppapi/c/dev/ppb_host_resolver_dev.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From dev/ppb_host_resolver_dev.idl modified Mon Jun 10 13:42:25 2013. */
+/* From dev/ppb_host_resolver_dev.idl modified Wed Jun 19 11:37:25 2013. */
#ifndef PPAPI_C_DEV_PPB_HOST_RESOLVER_DEV_H_
#define PPAPI_C_DEV_PPB_HOST_RESOLVER_DEV_H_
@@ -34,17 +34,13 @@
/**
* The <code>PP_HostResolver_Flags_Dev</code> is an enumeration of the
* different types of flags, that can be OR-ed and passed to host
- * resolver.
+ * resolver. Currently there is only one flag defined.
*/
typedef enum {
/**
* AI_CANONNAME
*/
- PP_HOSTRESOLVER_FLAGS_CANONNAME = 1 << 0,
- /**
- * Hint to the resolver that only loopback addresses are configured.
- */
- PP_HOSTRESOLVER_FLAGS_LOOPBACK_ONLY = 1 << 1
+ PP_HOSTRESOLVER_FLAGS_CANONNAME = 1 << 0
} PP_HostResolver_Flags_Dev;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_HostResolver_Flags_Dev, 4);
/**