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

Unified Diff: core/loader/appcache/ApplicationCache.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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
« no previous file with comments | « core/inspector/inline-javascript-imports.py ('k') | core/page/EventSource.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/loader/appcache/ApplicationCache.idl
diff --git a/core/loader/appcache/ApplicationCache.idl b/core/loader/appcache/ApplicationCache.idl
index 7f8e07c8140560c664c57ec3d3a26344191fa2bd..de2ca5f08683ba68ad190a7e4fbf7d2a1d81d1ee 100644
--- a/core/loader/appcache/ApplicationCache.idl
+++ b/core/loader/appcache/ApplicationCache.idl
@@ -23,9 +23,12 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+// https://html.spec.whatwg.org/#application-cache-api
+
[
DoNotCheckConstants,
- WillBeGarbageCollected,
+ GarbageCollected,
+ // TODO(philipj): Exposed=(Window,SharedWorker)
] interface ApplicationCache : EventTarget {
// update status
const unsigned short UNCACHED = 0;
@@ -36,9 +39,10 @@
const unsigned short OBSOLETE = 5;
readonly attribute unsigned short status;
+ // updates
[RaisesException] void update();
- [RaisesException] void swapCache();
void abort();
+ [RaisesException] void swapCache();
// events
attribute EventHandler onchecking;
@@ -50,4 +54,3 @@
attribute EventHandler oncached;
attribute EventHandler onobsolete;
};
-
« no previous file with comments | « core/inspector/inline-javascript-imports.py ('k') | core/page/EventSource.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698