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

Side by Side Diff: tools/dom/templates/html/impl/impl_Element.darttemplate

Issue 319283003: Refactor dart:_blink into classes to improve startup time (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/dom/src/html_native_DOMImplementation.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of $LIBRARYNAME; 5 part of $LIBRARYNAME;
6 6
7 class _ChildrenElementList extends ListBase<Element> 7 class _ChildrenElementList extends ListBase<Element>
8 implements NodeListWrapper { 8 implements NodeListWrapper {
9 // Raw Element. 9 // Raw Element.
10 final Element _element; 10 final Element _element;
(...skipping 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after
1378 @DocsEditable() 1378 @DocsEditable()
1379 void set scrollTop(int value) => JS("void", "#.scrollTop = #", this, value.rou nd()); 1379 void set scrollTop(int value) => JS("void", "#.scrollTop = #", this, value.rou nd());
1380 1380
1381 @DomName('Element.scrollWidth') 1381 @DomName('Element.scrollWidth')
1382 @DocsEditable() 1382 @DocsEditable()
1383 int get scrollWidth => JS('num', '#.scrollWidth', this).round(); 1383 int get scrollWidth => JS('num', '#.scrollWidth', this).round();
1384 1384
1385 $else 1385 $else
1386 @DomName('Element.offsetHeight') 1386 @DomName('Element.offsetHeight')
1387 @DocsEditable() 1387 @DocsEditable()
1388 int get offsetHeight => _blink.Native_Element_offsetHeight_Getter(this).round( ); 1388 int get offsetHeight => _blink.BlinkElement.$offsetHeight_Getter(this).round() ;
1389 1389
1390 @DomName('Element.offsetLeft') 1390 @DomName('Element.offsetLeft')
1391 @DocsEditable() 1391 @DocsEditable()
1392 int get offsetLeft => _blink.Native_Element_offsetLeft_Getter(this).round(); 1392 int get offsetLeft => _blink.BlinkElement.$offsetLeft_Getter(this).round();
1393 1393
1394 @DomName('Element.offsetTop') 1394 @DomName('Element.offsetTop')
1395 @DocsEditable() 1395 @DocsEditable()
1396 int get offsetTop => _blink.Native_Element_offsetTop_Getter(this).round(); 1396 int get offsetTop => _blink.BlinkElement.$offsetTop_Getter(this).round();
1397 1397
1398 @DomName('Element.offsetWidth') 1398 @DomName('Element.offsetWidth')
1399 @DocsEditable() 1399 @DocsEditable()
1400 int get offsetWidth => _blink.Native_Element_offsetWidth_Getter(this).round(); 1400 int get offsetWidth => _blink.BlinkElement.$offsetWidth_Getter(this).round();
1401 1401
1402 @DomName('Element.clientHeight') 1402 @DomName('Element.clientHeight')
1403 @DocsEditable() 1403 @DocsEditable()
1404 int get clientHeight => _blink.Native_Element_clientHeight_Getter(this).round( ); 1404 int get clientHeight => _blink.BlinkElement.$clientHeight_Getter(this).round() ;
1405 1405
1406 @DomName('Element.clientLeft') 1406 @DomName('Element.clientLeft')
1407 @DocsEditable() 1407 @DocsEditable()
1408 int get clientLeft => _blink.Native_Element_clientLeft_Getter(this).round(); 1408 int get clientLeft => _blink.BlinkElement.$clientLeft_Getter(this).round();
1409 1409
1410 @DomName('Element.clientTop') 1410 @DomName('Element.clientTop')
1411 @DocsEditable() 1411 @DocsEditable()
1412 int get clientTop => _blink.Native_Element_clientTop_Getter(this).round(); 1412 int get clientTop => _blink.BlinkElement.$clientTop_Getter(this).round();
1413 1413
1414 @DomName('Element.clientWidth') 1414 @DomName('Element.clientWidth')
1415 @DocsEditable() 1415 @DocsEditable()
1416 int get clientWidth => _blink.Native_Element_clientWidth_Getter(this).round(); 1416 int get clientWidth => _blink.BlinkElement.$clientWidth_Getter(this).round();
1417 1417
1418 @DomName('Element.scrollHeight') 1418 @DomName('Element.scrollHeight')
1419 @DocsEditable() 1419 @DocsEditable()
1420 int get scrollHeight => _blink.Native_Element_scrollHeight_Getter(this).round( ); 1420 int get scrollHeight => _blink.BlinkElement.$scrollHeight_Getter(this).round() ;
1421 1421
1422 @DomName('Element.scrollLeft') 1422 @DomName('Element.scrollLeft')
1423 @DocsEditable() 1423 @DocsEditable()
1424 int get scrollLeft => _blink.Native_Element_scrollLeft_Getter(this).round(); 1424 int get scrollLeft => _blink.BlinkElement.$scrollLeft_Getter(this).round();
1425 1425
1426 @DomName('Element.scrollLeft') 1426 @DomName('Element.scrollLeft')
1427 @DocsEditable() 1427 @DocsEditable()
1428 void set scrollLeft(int value) => _blink.Native_Element_scrollLeft_Setter(this , value.round()); 1428 void set scrollLeft(int value) => _blink.BlinkElement.$scrollLeft_Setter(this, value.round());
1429 1429
1430 @DomName('Element.scrollTop') 1430 @DomName('Element.scrollTop')
1431 @DocsEditable() 1431 @DocsEditable()
1432 int get scrollTop => _blink.Native_Element_scrollTop_Getter(this).round(); 1432 int get scrollTop => _blink.BlinkElement.$scrollTop_Getter(this).round();
1433 1433
1434 @DomName('Element.scrollTop') 1434 @DomName('Element.scrollTop')
1435 @DocsEditable() 1435 @DocsEditable()
1436 void set scrollTop(int value) => _blink.Native_Element_scrollTop_Setter(this, value.round()); 1436 void set scrollTop(int value) => _blink.BlinkElement.$scrollTop_Setter(this, v alue.round());
1437 1437
1438 @DomName('Element.scrollWidth') 1438 @DomName('Element.scrollWidth')
1439 @DocsEditable() 1439 @DocsEditable()
1440 int get scrollWidth => _blink.Native_Element_scrollWidth_Getter(this).round(); 1440 int get scrollWidth => _blink.BlinkElement.$scrollWidth_Getter(this).round();
1441 $endif 1441 $endif
1442 1442
1443 $!MEMBERS 1443 $!MEMBERS
1444 } 1444 }
1445 1445
1446 1446
1447 class _ElementFactoryProvider { 1447 class _ElementFactoryProvider {
1448 1448
1449 @DomName('Document.createElement') 1449 @DomName('Document.createElement')
1450 $if DART2JS 1450 $if DART2JS
(...skipping 27 matching lines...) Expand all
1478 const ScrollAlignment._internal(this._value); 1478 const ScrollAlignment._internal(this._value);
1479 toString() => 'ScrollAlignment.$_value'; 1479 toString() => 'ScrollAlignment.$_value';
1480 1480
1481 /// Attempt to align the element to the top of the scrollable area. 1481 /// Attempt to align the element to the top of the scrollable area.
1482 static const TOP = const ScrollAlignment._internal('TOP'); 1482 static const TOP = const ScrollAlignment._internal('TOP');
1483 /// Attempt to center the element in the scrollable area. 1483 /// Attempt to center the element in the scrollable area.
1484 static const CENTER = const ScrollAlignment._internal('CENTER'); 1484 static const CENTER = const ScrollAlignment._internal('CENTER');
1485 /// Attempt to align the element to the bottom of the scrollable area. 1485 /// Attempt to align the element to the bottom of the scrollable area.
1486 static const BOTTOM = const ScrollAlignment._internal('BOTTOM'); 1486 static const BOTTOM = const ScrollAlignment._internal('BOTTOM');
1487 } 1487 }
OLDNEW
« no previous file with comments | « tools/dom/src/html_native_DOMImplementation.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698