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

Unified Diff: tools/dom/templates/html/impl/impl_CompositionEvent.darttemplate

Issue 23055008: Making almost all dom_ methods private. Exceptions will be addressed in a later CL. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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: tools/dom/templates/html/impl/impl_CompositionEvent.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_CompositionEvent.darttemplate b/tools/dom/templates/html/impl/impl_CompositionEvent.darttemplate
index 2c61ba00f4d5a85c39549e7b4ec5c2514f34ac49..a6f6e68e2f8f04c523a3b7cd1c33049c6fa1c20e 100644
--- a/tools/dom/templates/html/impl/impl_CompositionEvent.darttemplate
+++ b/tools/dom/templates/html/impl/impl_CompositionEvent.darttemplate
@@ -13,8 +13,8 @@ $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
if (view == null) {
view = window;
}
- var e = document.$dom_createEvent("CompositionEvent");
- e.$dom_initCompositionEvent(type, canBubble, cancelable, view, data);
+ var e = document._createEvent("CompositionEvent");
+ e._initCompositionEvent(type, canBubble, cancelable, view, data);
return e;
}
$!MEMBERS

Powered by Google App Engine
This is Rietveld 408576698