| Index: ppapi/generators/idl_c_header.py
|
| diff --git a/ppapi/generators/idl_c_header.py b/ppapi/generators/idl_c_header.py
|
| index 22932e66477a42d283803d924d9776943a9aab2d..b4b98227df4cad4697f4c0acbdc76f205cd15b76 100755
|
| --- a/ppapi/generators/idl_c_header.py
|
| +++ b/ppapi/generators/idl_c_header.py
|
| @@ -288,6 +288,9 @@ class HGen(GeneratorByFile):
|
| # Skip this interface if there are no matching versions
|
| if not unique: continue
|
|
|
| + # Skip this interface if it should have no interface string.
|
| + if node.GetProperty('no_interface_string'): continue
|
| +
|
| last_stable_ver = None
|
| last_dev_rel = None
|
| for rel in unique:
|
|
|