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

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

Issue 12061008: Renaming dart:html library from 'html' to 'dart.html' (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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/generator.py ('k') | tools/dom/templates/callback.darttemplate » ('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 235733cc3218dc80ab6676031e35a96e6e25a441..36cf9e55d2a14b012220af3d5615373f308470ce 100644
--- a/tools/dom/scripts/systemhtml.py
+++ b/tools/dom/scripts/systemhtml.py
@@ -335,6 +335,7 @@ class HtmlDartInterfaceGenerator(object):
typedef_name = self._renamer.RenameInterface(self._interface)
code.Emit('typedef void $NAME($PARAMS);\n',
+ LIBRARYNAME='dart.dom.%s' % self._library_name,
NAME=typedef_name,
PARAMS=info.ParametersDeclaration(self._DartType))
self._backend.GenerateCallback(info)
@@ -411,7 +412,7 @@ class HtmlDartInterfaceGenerator(object):
self._implementation_members_emitter = implementation_emitter.Emit(
self._backend.ImplementationTemplate(),
- LIBRARYNAME=self._library_name,
+ LIBRARYNAME='dart.dom.%s' % self._library_name,
ANNOTATIONS=annotations,
CLASSNAME=self._interface_type_info.implementation_name(),
EXTENDS=' extends %s' % base_class if base_class else '',
« no previous file with comments | « tools/dom/scripts/generator.py ('k') | tools/dom/templates/callback.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698