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

Side by Side Diff: client/dom/generated/src/frog/Console.dart

Issue 8895013: Add enables consistent with Chrome's WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Alpha the ENABLEs Created 9 years 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 | « client/dom/generated/src/frog/Blob.dart ('k') | client/dom/generated/src/frog/DOMWindow.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 1
2 class Console native "=(typeof console == 'undefined' ? {} : console)" { 2 class Console native "=(typeof console == 'undefined' ? {} : console)" {
3 3
4 MemoryInfo memory; 4 MemoryInfo memory;
5 5
6 List profiles;
7
6 void assert(bool condition) native; 8 void assert(bool condition) native;
7 9
8 void count() native; 10 void count() native;
9 11
10 void debug(Object arg) native; 12 void debug(Object arg) native;
11 13
12 void dir() native; 14 void dir() native;
13 15
14 void dirxml() native; 16 void dirxml() native;
15 17
16 void error(Object arg) native; 18 void error(Object arg) native;
17 19
18 void group() native; 20 void group() native;
19 21
20 void groupCollapsed() native; 22 void groupCollapsed() native;
21 23
22 void groupEnd() native; 24 void groupEnd() native;
23 25
24 void info(Object arg) native; 26 void info(Object arg) native;
25 27
26 void log(Object arg) native; 28 void log(Object arg) native;
27 29
28 void markTimeline() native; 30 void markTimeline() native;
29 31
32 void profile(String title) native;
33
34 void profileEnd(String title) native;
35
30 void time(String title) native; 36 void time(String title) native;
31 37
32 void timeEnd(String title) native; 38 void timeEnd(String title) native;
33 39
34 void timeStamp() native; 40 void timeStamp() native;
35 41
36 void trace(Object arg) native; 42 void trace(Object arg) native;
37 43
38 void warn(Object arg) native; 44 void warn(Object arg) native;
39 45
40 var dartObjectLocalStorage; 46 var dartObjectLocalStorage;
41 47
42 String get typeName() native; 48 String get typeName() native;
43 } 49 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/Blob.dart ('k') | client/dom/generated/src/frog/DOMWindow.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698