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

Unified Diff: core/dom/URLUtils.idl

Issue 540533002: Roll IDL to Dartium37 (r181268) (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 6 years, 3 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 9cb7b4885977775506971a5de9041b7954e86d94..26ed382acf8385a2054e3de08d5a4df496c8d413 100644
--- a/core/dom/URLUtils.idl
+++ b/core/dom/URLUtils.idl
@@ -23,15 +23,17 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+// http://url.spec.whatwg.org/#urlutils
+
[
- NoInterfaceObject,
- ImplementedAs=DOMURLUtils
+ NoInterfaceObject, // Always used on target of 'implements'
] interface URLUtils {
- attribute DOMString href;
-
+ // 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;
+
attribute DOMString protocol;
attribute DOMString username;
attribute DOMString password;
@@ -40,10 +42,7 @@
attribute DOMString port;
attribute DOMString pathname;
attribute DOMString search;
-
// Not yet implemented.
- // attribute URLQuery? query;
-
+ // attribute URLSearchParams searchParams;
attribute DOMString 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