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

Unified Diff: Source/modules/serviceworkers/Response.idl

Issue 644473006: Rename 'ScalarValueString' to 'USVString' to match Web IDL (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 | « Source/modules/serviceworkers/RequestInit.cpp ('k') | Source/modules/serviceworkers/ServiceWorker.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/Response.idl
diff --git a/Source/modules/serviceworkers/Response.idl b/Source/modules/serviceworkers/Response.idl
index baad6f0dcc67e6a059f6bb2d1dc5fb06adce712c..3b122d09a69a70ae4e828655102cba08b2118944 100644
--- a/Source/modules/serviceworkers/Response.idl
+++ b/Source/modules/serviceworkers/Response.idl
@@ -8,7 +8,7 @@ enum ResponseType { "basic", "cors", "default", "error", "opaque" };
[
// FIXME: Add ctors for FormData and URLSearchParams response bodies.
- Constructor(ScalarValueString body, optional Dictionary responseInitDict),
+ Constructor(USVString body, optional Dictionary responseInitDict),
Constructor(Blob? body, optional Dictionary responseInitDict),
Constructor(ArrayBuffer input, optional Dictionary requestInitDict),
Constructor(ArrayBufferView input, optional Dictionary requestInitDict),
@@ -21,7 +21,7 @@ enum ResponseType { "basic", "cors", "default", "error", "opaque" };
] interface Response {
// FIXME: Implement redirect().
readonly attribute ResponseType type;
- readonly attribute ScalarValueString url;
+ readonly attribute USVString url;
readonly attribute unsigned short status;
readonly attribute ByteString statusText;
readonly attribute Headers headers;
« no previous file with comments | « Source/modules/serviceworkers/RequestInit.cpp ('k') | Source/modules/serviceworkers/ServiceWorker.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698