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

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

Issue 1185043005: Sync worker interfaces with the HTML spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | « no previous file | Source/core/workers/AbstractWorker.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/appcache/ApplicationCache.idl
diff --git a/Source/core/loader/appcache/ApplicationCache.idl b/Source/core/loader/appcache/ApplicationCache.idl
index 89851c848a7387cbd349da96d62dd2765fbd50e5..6459fe806ee4ce6aab0ee05d170c98f8c8f16160 100644
--- a/Source/core/loader/appcache/ApplicationCache.idl
+++ b/Source/core/loader/appcache/ApplicationCache.idl
@@ -23,8 +23,11 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+// https://html.spec.whatwg.org/#application-cache-api
+
[
DoNotCheckConstants,
+ // TODO(philipj): Exposed=(Window,SharedWorker)
] interface ApplicationCache : EventTarget {
// update status
const unsigned short UNCACHED = 0;
@@ -35,9 +38,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;
« no previous file with comments | « no previous file | Source/core/workers/AbstractWorker.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698