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

Unified Diff: core/events/ApplicationCacheErrorEvent.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/events/AnimationPlayerEventInit.idl ('k') | core/events/ApplicationCacheErrorEventInit.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/events/ApplicationCacheErrorEvent.idl
diff --git a/core/events/ApplicationCacheErrorEvent.idl b/core/events/ApplicationCacheErrorEvent.idl
index c69c3f7fe97932dd40ee91f62dcc2cd3d8c76cf2..debc4a091f0b83b0e39704653dbff1c59c47515d 100644
--- a/core/events/ApplicationCacheErrorEvent.idl
+++ b/core/events/ApplicationCacheErrorEvent.idl
@@ -2,11 +2,17 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+// ApplicationCache Error Detail Proposal:
+// https://docs.google.com/document/d/1nlk7WgRD3d0ZcfK1xrwBFVZ3DI_e44j7QoMd5gAJC4E/edit
+
+// TODO(philipj): Update the spec link once this is in the HTML spec:
+// https://www.w3.org/Bugs/Public/show_bug.cgi?id=22702
+
[
- EventConstructor,
+ Constructor(DOMString type, optional ApplicationCacheErrorEventInit eventInitDict),
] interface ApplicationCacheErrorEvent : Event {
- [InitializedByEventConstructor] readonly attribute DOMString reason;
- [InitializedByEventConstructor] readonly attribute DOMString url;
- [InitializedByEventConstructor] readonly attribute unsigned short status;
- [InitializedByEventConstructor] readonly attribute DOMString message;
+ readonly attribute DOMString reason;
+ readonly attribute DOMString url;
+ readonly attribute unsigned short status;
+ readonly attribute DOMString message;
};
« no previous file with comments | « core/events/AnimationPlayerEventInit.idl ('k') | core/events/ApplicationCacheErrorEventInit.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698