Index: client/dom/generated/src/interface/DOMApplicationCache.dart |
diff --git a/client/dom/generated/src/interface/DOMApplicationCache.dart b/client/dom/generated/src/interface/DOMApplicationCache.dart |
deleted file mode 100644 |
index 0ea20337927945be0cd24131d2d7e94f2fbbcb85..0000000000000000000000000000000000000000 |
--- a/client/dom/generated/src/interface/DOMApplicationCache.dart |
+++ /dev/null |
@@ -1,37 +0,0 @@ |
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
-// for details. All rights reserved. Use of this source code is governed by a |
-// BSD-style license that can be found in the LICENSE file. |
- |
-// WARNING: Do not edit - generated code. |
- |
-interface ApplicationCache extends EventTarget { |
- |
- final int status; |
- |
- void abort(); |
- |
- void addEventListener(String type, EventListener listener, [bool useCapture]); |
- |
- bool dispatchEvent(Event evt); |
- |
- void removeEventListener(String type, EventListener listener, [bool useCapture]); |
- |
- void swapCache(); |
- |
- void update(); |
-} |
- |
-interface DOMApplicationCache extends ApplicationCache { |
- |
- static final int CHECKING = 2; |
- |
- static final int DOWNLOADING = 3; |
- |
- static final int IDLE = 1; |
- |
- static final int OBSOLETE = 5; |
- |
- static final int UNCACHED = 0; |
- |
- static final int UPDATEREADY = 4; |
-} |