summaryrefslogtreecommitdiffstats
path: root/ppapi/c
diff options
context:
space:
mode:
authorwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-20 17:56:49 +0000
committerwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-20 17:56:49 +0000
commit5bc5c15301e555c7d22b27d2b30c56b6ca1770ac (patch)
tree3224de17fcacd84b3e723922b9911d1f73a33c50 /ppapi/c
parente50540ec88e9a2102a028336335fc8eb4ee026ee (diff)
downloadchromium_src-5bc5c15301e555c7d22b27d2b30c56b6ca1770ac.zip
chromium_src-5bc5c15301e555c7d22b27d2b30c56b6ca1770ac.tar.gz
chromium_src-5bc5c15301e555c7d22b27d2b30c56b6ca1770ac.tar.bz2
Remove RemoteAccessClientFirewallTraversal policy and code paths.
BUG=96318 TEST= Review URL: http://codereview.chromium.org/8275012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106521 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c')
-rw-r--r--ppapi/c/dev/ppb_query_policy_dev.h47
-rw-r--r--ppapi/c/dev/ppp_policy_update_dev.h47
2 files changed, 0 insertions, 94 deletions
diff --git a/ppapi/c/dev/ppb_query_policy_dev.h b/ppapi/c/dev/ppb_query_policy_dev.h
deleted file mode 100644
index 46394aa..0000000
--- a/ppapi/c/dev/ppb_query_policy_dev.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/* Copyright (c) 2011 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.
- */
-
-/* From dev/ppb_query_policy_dev.idl modified Tue Oct 4 08:47:29 2011. */
-
-#ifndef PPAPI_C_DEV_PPB_QUERY_POLICY_DEV_H_
-#define PPAPI_C_DEV_PPB_QUERY_POLICY_DEV_H_
-
-#include "ppapi/c/pp_instance.h"
-#include "ppapi/c/pp_macros.h"
-#include "ppapi/c/pp_stdint.h"
-
-#define PPB_QUERYPOLICY_DEV_INTERFACE_0_1 "PPB_QueryPolicy(Dev);0.1"
-#define PPB_QUERYPOLICY_DEV_INTERFACE PPB_QUERYPOLICY_DEV_INTERFACE_0_1
-
-/**
- * @file
- * This file defines the <code>PPB_QueryPolicy_Dev</code> interface.
- */
-
-
-/**
- * @addtogroup Interfaces
- * @{
- */
-struct PPB_QueryPolicy_Dev {
- /**
- * Subscribes the instance to receive updates via the
- * <code>PPP_PolicyUpdate_Dev</code> interface.
- *
- * The plugin is guaranteed to get one update immediately via the
- * <code>PP_PolicyUpdate_Dev</code> interface. This allows the plugin to
- * retrieve the current policy when subscribing for the first time.
- *
- * @param[in] instance A <code>PP_Instance</code> indentifying one instance
- * of a module.
- */
- void (*SubscribeToPolicyUpdates)(PP_Instance instance);
-};
-/**
- * @}
- */
-
-#endif /* PPAPI_C_DEV_PPB_QUERY_POLICY_DEV_H_ */
-
diff --git a/ppapi/c/dev/ppp_policy_update_dev.h b/ppapi/c/dev/ppp_policy_update_dev.h
deleted file mode 100644
index 83fa9b3..0000000
--- a/ppapi/c/dev/ppp_policy_update_dev.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/* Copyright (c) 2011 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.
- */
-
-/* From dev/ppp_policy_update_dev.idl modified Tue Oct 4 09:58:59 2011. */
-
-#ifndef PPAPI_C_DEV_PPP_POLICY_UPDATE_DEV_H_
-#define PPAPI_C_DEV_PPP_POLICY_UPDATE_DEV_H_
-
-#include "ppapi/c/pp_bool.h"
-#include "ppapi/c/pp_instance.h"
-#include "ppapi/c/pp_macros.h"
-#include "ppapi/c/pp_stdint.h"
-#include "ppapi/c/pp_var.h"
-
-#define PPP_POLICYUPDATE_DEV_INTERFACE_0_1 "PPP_PolicyUpdate(Dev);0.1"
-#define PPP_POLICYUPDATE_DEV_INTERFACE PPP_POLICYUPDATE_DEV_INTERFACE_0_1
-
-/**
- * @file
- * This file defines the <code>PPP_PolicyUpdate_Dev</code> interface.
- */
-
-
-/**
- * @addtogroup Interfaces
- * @{
- */
-struct PPP_PolicyUpdate_Dev {
- /**
- * Signals that the policy has been updated, and provides it via a JSON
- * string.
- *
- * @param[in] instance A <code>PP_Instance</code> indentifying one instance
- * of a module.
- * @param[in] A <code>PP_Var</code> with a JSON string representing the
- * encoded policy.
- */
- void (*PolicyUpdated)(PP_Instance instance, struct PP_Var policy_json);
-};
-/**
- * @}
- */
-
-#endif /* PPAPI_C_DEV_PPP_POLICY_UPDATE_DEV_H_ */
-