Commit 26635467 authored by Gyuyoung Kim's avatar Gyuyoung Kim Committed by Commit Bot

Update DOMString url types with USVString in the NavigatorContentUtils.idl

Latest spec has used USVString instead of DOMString for url argument.
 - spec: https://html.spec.whatwg.org/multipage/system-state.html#custom-handlers

This CL replaces DOMString type with USVString type according to the spec.

Bug: 790860
Change-Id: I179144780bd345bc71e9b9beeaea3470a8e3d302
Reviewed-on: https://chromium-review.googlesource.com/781320Reviewed-by: default avatarTakeshi Yoshino <tyoshino@chromium.org>
Reviewed-by: default avatarPhilip Jägenstedt <foolip@chromium.org>
Reviewed-by: default avatarKenichi Ishibashi <bashi@chromium.org>
Commit-Queue: Gyuyoung Kim <gyuyoung.kim@lge.com>
Cr-Commit-Position: refs/heads/master@{#522081}
parent ea772d72
...@@ -23,6 +23,6 @@ ...@@ -23,6 +23,6 @@
[ [
ImplementedAs=NavigatorContentUtils ImplementedAs=NavigatorContentUtils
] partial interface Navigator { ] partial interface Navigator {
[RuntimeEnabled=NavigatorContentUtils, RaisesException] void registerProtocolHandler(DOMString scheme, DOMString url, DOMString title); [RuntimeEnabled=NavigatorContentUtils, RaisesException] void registerProtocolHandler(DOMString scheme, USVString url, DOMString title);
[RuntimeEnabled=NavigatorContentUtils, RaisesException] void unregisterProtocolHandler(DOMString scheme, DOMString url); [RuntimeEnabled=NavigatorContentUtils, RaisesException] void unregisterProtocolHandler(DOMString scheme, USVString url);
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment