summaryrefslogtreecommitdiffstats
path: root/ppapi/generators
diff options
context:
space:
mode:
authorpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-01 00:17:22 +0000
committerpiman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-01 00:17:22 +0000
commit914f5269eed1c8651d53f93d4181738f1344a108 (patch)
tree6ae9ea60cbccafaec2899eaf1ea7a4f958220302 /ppapi/generators
parent0fafc8de47e8aa377e3fb96fc914fbe7399fe9c6 (diff)
downloadchromium_src-914f5269eed1c8651d53f93d4181738f1344a108.zip
chromium_src-914f5269eed1c8651d53f93d4181738f1344a108.tar.gz
chromium_src-914f5269eed1c8651d53f93d4181738f1344a108.tar.bz2
Remove unused trusted interfaces.
Several trusted interfaces were originally used internally by the IPC proxy and the NaCl srpc proxy. The IPC proxy switched to using C++ *_API classes directly, and the srpc proxy is no more, so there's no user of these anymore. BUG=None Review URL: https://chromiumcodereview.appspot.com/16253003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203526 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/generators')
-rwxr-xr-xppapi/generators/idl_c_header.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/ppapi/generators/idl_c_header.py b/ppapi/generators/idl_c_header.py
index ee2f256..a3b8688 100755
--- a/ppapi/generators/idl_c_header.py
+++ b/ppapi/generators/idl_c_header.py
@@ -178,8 +178,7 @@ def CheckPassByValue(filenode, releases):
# http://crbug.com/233439
type_whitelist = ['PP_ArrayOutput', 'PP_CompletionCallback',
'PP_Ext_EventListener', 'PP_FloatPoint',
- 'PP_Graphics3DTrustedState', 'PP_Point', 'PP_TouchPoint',
- 'PP_Var']
+ 'PP_Point', 'PP_TouchPoint', 'PP_Var']
nodes_to_check = filenode.GetListOf('Struct')
nodes_to_check.extend(filenode.GetListOf('Union'))
for node in nodes_to_check: