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

Unified Diff: client/html/generated/html/dartium/Console.dart

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
Index: client/html/generated/html/dartium/Console.dart
diff --git a/client/html/generated/html/dartium/Console.dart b/client/html/generated/html/dartium/Console.dart
deleted file mode 100644
index 00c32ca7dadd35ada45c1897d667a3743484afde..0000000000000000000000000000000000000000
--- a/client/html/generated/html/dartium/Console.dart
+++ /dev/null
@@ -1,103 +0,0 @@
-
-class _ConsoleImpl extends _DOMTypeBase implements Console {
- _ConsoleImpl._wrap(ptr) : super._wrap(ptr);
-
- MemoryInfo get memory() => _wrap(_ptr.memory);
-
- List get profiles() => _wrap(_ptr.profiles);
-
- void assertCondition(bool condition, Object arg) {
- _ptr.assertCondition(_unwrap(condition), _unwrap(arg));
- return;
- }
-
- void count() {
- _ptr.count();
- return;
- }
-
- void debug(Object arg) {
- _ptr.debug(_unwrap(arg));
- return;
- }
-
- void dir() {
- _ptr.dir();
- return;
- }
-
- void dirxml() {
- _ptr.dirxml();
- return;
- }
-
- void error(Object arg) {
- _ptr.error(_unwrap(arg));
- return;
- }
-
- void group(Object arg) {
- _ptr.group(_unwrap(arg));
- return;
- }
-
- void groupCollapsed(Object arg) {
- _ptr.groupCollapsed(_unwrap(arg));
- return;
- }
-
- void groupEnd() {
- _ptr.groupEnd();
- return;
- }
-
- void info(Object arg) {
- _ptr.info(_unwrap(arg));
- return;
- }
-
- void log(Object arg) {
- _ptr.log(_unwrap(arg));
- return;
- }
-
- void markTimeline() {
- _ptr.markTimeline();
- return;
- }
-
- void profile(String title) {
- _ptr.profile(_unwrap(title));
- return;
- }
-
- void profileEnd(String title) {
- _ptr.profileEnd(_unwrap(title));
- return;
- }
-
- void time(String title) {
- _ptr.time(_unwrap(title));
- return;
- }
-
- void timeEnd(String title, Object arg) {
- _ptr.timeEnd(_unwrap(title), _unwrap(arg));
- return;
- }
-
- void timeStamp(Object arg) {
- _ptr.timeStamp(_unwrap(arg));
- return;
- }
-
- void trace(Object arg) {
- _ptr.trace(_unwrap(arg));
- return;
- }
-
- void warn(Object arg) {
- _ptr.warn(_unwrap(arg));
- return;
- }
-}
« no previous file with comments | « client/html/generated/html/dartium/CompositionEvent.dart ('k') | client/html/generated/html/dartium/ContentElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698