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

Unified Diff: Source/core/dom/URLUtils.idl

Issue 143313002: Implement URLSearchParams. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Handle dependency between URLUtils interfaces and URLSearchParams Created 6 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
Index: Source/core/dom/URLUtils.idl
diff --git a/Source/core/dom/URLUtils.idl b/Source/core/dom/URLUtils.idl
index 9cb7b4885977775506971a5de9041b7954e86d94..09042d3dc77659a400456a1eeeb58344fa61a953 100644
--- a/Source/core/dom/URLUtils.idl
+++ b/Source/core/dom/URLUtils.idl
@@ -40,10 +40,7 @@
attribute DOMString port;
attribute DOMString pathname;
attribute DOMString search;
-
- // Not yet implemented.
- // attribute URLQuery? query;
-
+ attribute URLSearchParams? searchParams;
Inactive 2014/01/21 15:25:58 Why mark it as nullable if it cannot be null? (at
sof 2014/01/21 21:16:47 Yes, the query object cannot be null here, so leav
attribute DOMString hash;
};

Powered by Google App Engine
This is Rietveld 408576698