Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Unified Diff: Source/bindings/scripts/compute_interfaces_info.py

Issue 205243013: Got WebGLRenderingContextBase to work with the "implements" syntax (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated to use ImplementedInBaseClass (NOT GOOD TO COMMIT) Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/bindings/scripts/compute_interfaces_info.py
diff --git a/Source/bindings/scripts/compute_interfaces_info.py b/Source/bindings/scripts/compute_interfaces_info.py
index 5084d903111502a87044c4d88fa1f4b016d981dd..6aa3d77dce41ab9f2ca14cb8dff4fd2456f97883 100755
--- a/Source/bindings/scripts/compute_interfaces_info.py
+++ b/Source/bindings/scripts/compute_interfaces_info.py
@@ -163,8 +163,7 @@ def compute_individual_info(idl_filename):
implemented_as = extended_attributes.get('ImplementedAs')
# FIXME: remove [NoHeader] once switch to Python
this_include_path = (include_path(idl_filename, implemented_as)
- if ('ImplementedInBaseClass' not in extended_attributes
- and 'NoHeader' not in extended_attributes)
+ if 'NoHeader' not in extended_attributes
else None)
# Handle partial interfaces

Powered by Google App Engine
This is Rietveld 408576698