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

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

Issue 299363005: Use proper prefix for blink (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/templates/html/impl/impl_Element.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_Element.darttemplate b/tools/dom/templates/html/impl/impl_Element.darttemplate
index 1a4bd77e86fee13f1a5d5b5529f5e052d029b703..5069291244ad8bdab5363e5aac2189dd7a5ad60d 100644
--- a/tools/dom/templates/html/impl/impl_Element.darttemplate
+++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
@@ -1377,59 +1377,59 @@ $if DART2JS
$else
@DomName('Element.offsetHeight')
@DocsEditable()
- num get offsetHeight => Native_Element_offsetHeight_Getter(this);
+ num get offsetHeight => _blink.Native_Element_offsetHeight_Getter(this);
@DomName('Element.offsetLeft')
@DocsEditable()
- num get offsetLeft => Native_Element_offsetLeft_Getter(this);
+ num get offsetLeft => _blink.Native_Element_offsetLeft_Getter(this);
@DomName('Element.offsetTop')
@DocsEditable()
- num get offsetTop => Native_Element_offsetTop_Getter(this);
+ num get offsetTop => _blink.Native_Element_offsetTop_Getter(this);
@DomName('Element.offsetWidth')
@DocsEditable()
- num get offsetWidth => Native_Element_offsetWidth_Getter(this);
+ num get offsetWidth => _blink.Native_Element_offsetWidth_Getter(this);
@DomName('Element.clientHeight')
@DocsEditable()
- num get clientHeight => Native_Element_clientHeight_Getter(this);
+ num get clientHeight => _blink.Native_Element_clientHeight_Getter(this);
@DomName('Element.clientLeft')
@DocsEditable()
- num get clientLeft => Native_Element_clientLeft_Getter(this);
+ num get clientLeft => _blink.Native_Element_clientLeft_Getter(this);
@DomName('Element.clientTop')
@DocsEditable()
- num get clientTop => Native_Element_clientTop_Getter(this);
+ num get clientTop => _blink.Native_Element_clientTop_Getter(this);
@DomName('Element.clientWidth')
@DocsEditable()
- num get clientWidth => Native_Element_clientWidth_Getter(this);
+ num get clientWidth => _blink.Native_Element_clientWidth_Getter(this);
@DomName('Element.scrollHeight')
@DocsEditable()
- num get scrollHeight => Native_Element_scrollHeight_Getter(this);
+ num get scrollHeight => _blink.Native_Element_scrollHeight_Getter(this);
@DomName('Element.scrollLeft')
@DocsEditable()
- num get scrollLeft => Native_Element_scrollLeft_Getter(this);
+ num get scrollLeft => _blink.Native_Element_scrollLeft_Getter(this);
@DomName('Element.scrollLeft')
@DocsEditable()
- void set scrollLeft(num value) => Native_Element_scrollLeft_Setter(this, value);
+ void set scrollLeft(num value) => _blink.Native_Element_scrollLeft_Setter(this, value);
@DomName('Element.scrollTop')
@DocsEditable()
- num get scrollTop => Native_Element_scrollTop_Getter(this);
+ num get scrollTop => _blink.Native_Element_scrollTop_Getter(this);
@DomName('Element.scrollTop')
@DocsEditable()
- void set scrollTop(num value) => Native_Element_scrollTop_Setter(this, value);
+ void set scrollTop(num value) => _blink.Native_Element_scrollTop_Setter(this, value);
@DomName('Element.scrollWidth')
@DocsEditable()
- num get scrollWidth => Native_Element_scrollWidth_Getter(this);
+ num get scrollWidth => _blink.Native_Element_scrollWidth_Getter(this);
$endif
$!MEMBERS
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698