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

Unified Diff: tools/dom/scripts/systemhtml.py

Issue 444743002: Use Blink IDL parser for dart libraries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merged Created 6 years, 3 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
« no previous file with comments | « tools/dom/scripts/multiemitter.py ('k') | tools/dom/src/WebGLConstants.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/scripts/systemhtml.py
diff --git a/tools/dom/scripts/systemhtml.py b/tools/dom/scripts/systemhtml.py
index 3d70e811e77e72d262f817df4b99cc827304b499..5cb27f0b32201e8c4ab51cc5b1b70db1001da4f2 100644
--- a/tools/dom/scripts/systemhtml.py
+++ b/tools/dom/scripts/systemhtml.py
@@ -654,7 +654,7 @@ class Dart2JSBackend(HtmlDartGenerator):
interface.
"""
- def __init__(self, interface, options):
+ def __init__(self, interface, options, logging_level=logging.WARNING):
super(Dart2JSBackend, self).__init__(interface, options, False)
self._database = options.database
@@ -666,6 +666,8 @@ class Dart2JSBackend(HtmlDartGenerator):
self._current_secondary_parent = None
self._library_name = self._renamer.GetLibraryName(self._interface)
+ _logger.setLevel(logging_level)
+
def ImplementsMergedMembers(self):
return True
« no previous file with comments | « tools/dom/scripts/multiemitter.py ('k') | tools/dom/src/WebGLConstants.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698