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

Unified Diff: third_party/WebCore/Modules/navigatorcontentutils/NavigatorContentUtils.idl

Issue 10911186: Roll WebKit IDL to multivm@858 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
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);
};

Powered by Google App Engine
This is Rietveld 408576698