| Index: third_party/WebCore/Modules/navigatorcontentutils/NavigatorContentUtils.idl
|
| diff --git a/third_party/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl b/third_party/WebCore/Modules/navigatorcontentutils/NavigatorContentUtils.idl
|
| similarity index 67%
|
| rename from third_party/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl
|
| rename to third_party/WebCore/Modules/navigatorcontentutils/NavigatorContentUtils.idl
|
| index 274bb5992b5296bf20e180255cf0bb81ec71a76a..b334481e7a43fe81ff77a3f3c8b62b9e1353742f 100644
|
| --- a/third_party/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl
|
| +++ b/third_party/WebCore/Modules/navigatorcontentutils/NavigatorContentUtils.idl
|
| @@ -20,14 +20,15 @@
|
|
|
| module window {
|
|
|
| + // http://www.w3.org/TR/html5/system-state-and-capabilities.html#custom-handlers
|
| interface [
|
| Supplemental=Navigator
|
| - ] NavigatorRegisterProtocolHandler {
|
| - [Conditional=REGISTER_PROTOCOL_HANDLER] void registerProtocolHandler(in DOMString scheme, in DOMString url, in DOMString title)
|
| + ] NavigatorContentUtils {
|
| + [Conditional=NAVIGATOR_CONTENT_UTILS] void registerProtocolHandler(in DOMString scheme, in DOMString url, in DOMString title)
|
| raises(DOMException);
|
| - [Conditional=REGISTER_PROTOCOL_HANDLER&CUSTOM_SCHEME_HANDLER] DOMString isProtocolHandlerRegistered(in DOMString scheme, in DOMString url)
|
| + [Conditional=NAVIGATOR_CONTENT_UTILS&CUSTOM_SCHEME_HANDLER] DOMString isProtocolHandlerRegistered(in DOMString scheme, in DOMString url)
|
| raises(DOMException);
|
| - [Conditional=REGISTER_PROTOCOL_HANDLER&CUSTOM_SCHEME_HANDLER] void unregisterProtocolHandler(in DOMString scheme, in DOMString url)
|
| + [Conditional=NAVIGATOR_CONTENT_UTILS&CUSTOM_SCHEME_HANDLER] void unregisterProtocolHandler(in DOMString scheme, in DOMString url)
|
| raises(DOMException);
|
| };
|
|
|
|
|