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

Unified Diff: core/dom/URLUtils.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/dom/URL.idl ('k') | core/dom/URLUtilsReadOnly.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/dom/URLUtils.idl
diff --git a/core/dom/URLUtils.idl b/core/dom/URLUtils.idl
index 5f0e115ab1229956fb0280bb2e5a03e6da5ef2e1..8826e1186ce302952acb7fec1aa2d509835909d8 100644
--- a/core/dom/URLUtils.idl
+++ b/core/dom/URLUtils.idl
@@ -23,26 +23,27 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-// http://url.spec.whatwg.org/#urlutils
+// https://url.spec.whatwg.org/#urlutils
[
NoInterfaceObject, // Always used on target of 'implements'
+ Exposed=(Window,Worker),
] interface URLUtils {
// FIXME: should be stringifier: http://crbug.com/306606
- // stringifier attribute ScalarValueString href;
- attribute ScalarValueString href;
- [NotEnumerable, ImplementedAs=href] ScalarValueString toString();
- readonly attribute ScalarValueString origin;
+ // stringifier attribute USVString href;
+ attribute USVString href;
+ [NotEnumerable, ImplementedAs=href] USVString toString();
+ readonly attribute USVString origin;
- attribute ScalarValueString protocol;
- attribute ScalarValueString username;
- attribute ScalarValueString password;
- attribute ScalarValueString host;
- attribute ScalarValueString hostname;
- attribute ScalarValueString port;
- attribute ScalarValueString pathname;
- attribute ScalarValueString search;
+ attribute USVString protocol;
+ attribute USVString username;
+ attribute USVString password;
+ attribute USVString host;
+ attribute USVString hostname;
+ attribute USVString port;
+ attribute USVString pathname;
+ attribute USVString search;
// Not yet implemented.
// attribute URLSearchParams searchParams;
- attribute ScalarValueString hash;
+ attribute USVString hash;
};
« no previous file with comments | « core/dom/URL.idl ('k') | core/dom/URLUtilsReadOnly.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698