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

Unified Diff: lib/dom/scripts/systembase.py

Issue 10704008: Make HtmlFrogSystem and NativeImplementationSystem the backends for HtmlInterfacesSystem and remove… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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: lib/dom/scripts/systembase.py
diff --git a/lib/dom/scripts/systembase.py b/lib/dom/scripts/systembase.py
index 9402d2d0c83f31abc5ef788c28b1b9f610246344..d8b9d270d64c982d237d34639bd917925615f323 100644
--- a/lib/dom/scripts/systembase.py
+++ b/lib/dom/scripts/systembase.py
@@ -29,7 +29,6 @@ class System(object):
self._database = database
self._emitters = emitters
self._output_dir = output_dir
- self._dart_callback_file_paths = []
def ProcessInterface(self, interface):
"""Processes an interface that is not a callback function."""
@@ -50,7 +49,7 @@ class System(object):
def _ProcessCallback(self, interface, info, file_path):
"""Generates a typedef for the callback interface."""
- self._dart_callback_file_paths.append(file_path)
+ self._dart_interface_file_paths.append(file_path)
code = self._emitters.FileEmitter(file_path)
code.Emit(self._templates.Load('callback.darttemplate'))

Powered by Google App Engine
This is Rietveld 408576698