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

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

Issue 331313011: Switch URL and URLUtils interfaces over to use ScalarValueString. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Tidy new url-constructor test Created 6 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 | « Source/core/dom/URL.idl ('k') | Source/core/dom/URLUtilsReadOnly.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/URLUtils.idl
diff --git a/Source/core/dom/URLUtils.idl b/Source/core/dom/URLUtils.idl
index 26ed382acf8385a2054e3de08d5a4df496c8d413..6bb5c2abddb57add6755d2995a123bd8a0d7154e 100644
--- a/Source/core/dom/URLUtils.idl
+++ b/Source/core/dom/URLUtils.idl
@@ -29,20 +29,20 @@
NoInterfaceObject, // Always used on target of 'implements'
] interface URLUtils {
// FIXME: should be stringifier: http://crbug.com/306606
- // stringifier attribute DOMString href;
- [PerWorldBindings, LogActivity=SetterOnly, LogPreviousValue] attribute DOMString href;
- [NotEnumerable, ImplementedAs=href] DOMString toString();
- readonly attribute DOMString origin;
+ // stringifier attribute ScalarValueString href;
+ [PerWorldBindings, LogActivity=SetterOnly, LogPreviousValue] attribute ScalarValueString href;
+ [NotEnumerable, ImplementedAs=href] ScalarValueString toString();
+ readonly attribute ScalarValueString origin;
- attribute DOMString protocol;
- attribute DOMString username;
- attribute DOMString password;
- attribute DOMString host;
- attribute DOMString hostname;
- attribute DOMString port;
- attribute DOMString pathname;
- attribute DOMString search;
+ attribute ScalarValueString protocol;
+ attribute ScalarValueString username;
+ attribute ScalarValueString password;
+ attribute ScalarValueString host;
+ attribute ScalarValueString hostname;
+ attribute ScalarValueString port;
+ attribute ScalarValueString pathname;
+ attribute ScalarValueString search;
// Not yet implemented.
// attribute URLSearchParams searchParams;
- attribute DOMString hash;
+ attribute ScalarValueString hash;
};
« no previous file with comments | « Source/core/dom/URL.idl ('k') | Source/core/dom/URLUtilsReadOnly.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698