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

Unified Diff: third_party/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl

Issue 10825350: Roll IDL to multivm@762 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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/protocolhandler/NavigatorRegisterProtocolHandler.idl
diff --git a/third_party/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl b/third_party/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl
index 1bd57f2fe2c42e66e19a6d275dfc28a88095c571..274bb5992b5296bf20e180255cf0bb81ec71a76a 100644
--- a/third_party/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl
+++ b/third_party/WebCore/Modules/protocolhandler/NavigatorRegisterProtocolHandler.idl
@@ -25,9 +25,9 @@ module window {
] NavigatorRegisterProtocolHandler {
[Conditional=REGISTER_PROTOCOL_HANDLER] void registerProtocolHandler(in DOMString scheme, in DOMString url, in DOMString title)
raises(DOMException);
- [Conditional=CUSTOM_SCHEME_HANDLER] DOMString isProtocolHandlerRegistered(in DOMString scheme, in DOMString url)
+ [Conditional=REGISTER_PROTOCOL_HANDLER&CUSTOM_SCHEME_HANDLER] DOMString isProtocolHandlerRegistered(in DOMString scheme, in DOMString url)
raises(DOMException);
- [Conditional=CUSTOM_SCHEME_HANDLER] void unregisterProtocolHandler(in DOMString scheme, in DOMString url)
+ [Conditional=REGISTER_PROTOCOL_HANDLER&CUSTOM_SCHEME_HANDLER] void unregisterProtocolHandler(in DOMString scheme, in DOMString url)
raises(DOMException);
};

Powered by Google App Engine
This is Rietveld 408576698