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

Side by Side Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 11358253: Removing the Window.clientInformation property as it's an IE legacy version of Window.navigator. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library html; 1 library html;
2 2
3 import 'dart:isolate'; 3 import 'dart:isolate';
4 import 'dart:json'; 4 import 'dart:json';
5 import 'dart:svg' as svg; 5 import 'dart:svg' as svg;
6 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7 // for details. All rights reserved. Use of this source code is governed by a 7 // for details. All rights reserved. Use of this source code is governed by a
8 // BSD-style license that can be found in the LICENSE file. 8 // BSD-style license that can be found in the LICENSE file.
9 9
10 // DO NOT EDIT 10 // DO NOT EDIT
(...skipping 11491 matching lines...) Expand 10 before | Expand all | Expand 10 after
11502 LocalWindowEvents get on => 11502 LocalWindowEvents get on =>
11503 new LocalWindowEvents(this); 11503 new LocalWindowEvents(this);
11504 11504
11505 static const int PERSISTENT = 1; 11505 static const int PERSISTENT = 1;
11506 11506
11507 static const int TEMPORARY = 0; 11507 static const int TEMPORARY = 0;
11508 11508
11509 /** @domName Window.applicationCache */ 11509 /** @domName Window.applicationCache */
11510 final DOMApplicationCache applicationCache; 11510 final DOMApplicationCache applicationCache;
11511 11511
11512 /** @domName Window.clientInformation */
11513 final Navigator clientInformation;
11514
11515 /** @domName Window.closed */ 11512 /** @domName Window.closed */
11516 final bool closed; 11513 final bool closed;
11517 11514
11518 /** @domName Window.console */ 11515 /** @domName Window.console */
11519 final Console console; 11516 final Console console;
11520 11517
11521 /** @domName Window.crypto */ 11518 /** @domName Window.crypto */
11522 final Crypto crypto; 11519 final Crypto crypto;
11523 11520
11524 /** @domName Window.defaultStatus */ 11521 /** @domName Window.defaultStatus */
(...skipping 13327 matching lines...) Expand 10 before | Expand all | Expand 10 after
24852 if (length < 0) throw new ArgumentError('length'); 24849 if (length < 0) throw new ArgumentError('length');
24853 if (start < 0) throw new RangeError.value(start); 24850 if (start < 0) throw new RangeError.value(start);
24854 int end = start + length; 24851 int end = start + length;
24855 if (end > a.length) throw new RangeError.value(end); 24852 if (end > a.length) throw new RangeError.value(end);
24856 for (int i = start; i < end; i++) { 24853 for (int i = start; i < end; i++) {
24857 accumulator.add(a[i]); 24854 accumulator.add(a[i]);
24858 } 24855 }
24859 return accumulator; 24856 return accumulator;
24860 } 24857 }
24861 } 24858 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698