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

Side by Side Diff: client/dom/generated/src/interface/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
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 interface Console { 7 interface Console {
8 8
9 MemoryInfo get memory(); 9 MemoryInfo get memory();
10 10
11 List get profiles();
12
11 void assert(bool condition); 13 void assert(bool condition);
12 14
13 void count(); 15 void count();
14 16
15 void debug(Object arg); 17 void debug(Object arg);
16 18
17 void dir(); 19 void dir();
18 20
19 void dirxml(); 21 void dirxml();
20 22
21 void error(Object arg); 23 void error(Object arg);
22 24
23 void group(); 25 void group();
24 26
25 void groupCollapsed(); 27 void groupCollapsed();
26 28
27 void groupEnd(); 29 void groupEnd();
28 30
29 void info(Object arg); 31 void info(Object arg);
30 32
31 void log(Object arg); 33 void log(Object arg);
32 34
33 void markTimeline(); 35 void markTimeline();
34 36
37 void profile(String title);
38
39 void profileEnd(String title);
40
35 void time(String title); 41 void time(String title);
36 42
37 void timeEnd(String title); 43 void timeEnd(String title);
38 44
39 void timeStamp(); 45 void timeStamp();
40 46
41 void trace(Object arg); 47 void trace(Object arg);
42 48
43 void warn(Object arg); 49 void warn(Object arg);
44 } 50 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/Blob.dart ('k') | client/dom/generated/src/interface/DOMWindow.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698