| Index: tools/dom/scripts/dartgenerator.py
|
| diff --git a/tools/dom/scripts/dartgenerator.py b/tools/dom/scripts/dartgenerator.py
|
| index cde0484d172bf888fec95189283fb1ba6b678da2..617170096f83fb02af90998ea04c2003849c3b31 100755
|
| --- a/tools/dom/scripts/dartgenerator.py
|
| +++ b/tools/dom/scripts/dartgenerator.py
|
| @@ -86,7 +86,8 @@ class DartGenerator(object):
|
| self._IsCompoundType(database, type_name)):
|
| continue
|
| # Ignore constructor warnings.
|
| - if not (interface.id in ['Window', 'WorkerContext'] and
|
| + if not (interface.id in ['Window', 'WorkerContext',
|
| + 'WorkerGlobalScope'] and
|
| type_name.endswith('Constructor')):
|
| _logger.warn('removing %s in %s which has unidentified type %s' %
|
| (node_name, interface.id, type_name))
|
|
|