Title: [107442] trunk/Source/WebCore
Revision
107442
Author
podivi...@chromium.org
Date
2012-02-10 14:20:53 -0800 (Fri, 10 Feb 2012)

Log Message

Fix a few typos in IDL exception names.
https://bugs.webkit.org/show_bug.cgi?id=78356

Reviewed by Adam Barth.

* dom/Node.idl:
* notifications/NotificationCenter.idl:
* page/Navigator.idl:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (107441 => 107442)


--- trunk/Source/WebCore/ChangeLog	2012-02-10 22:19:03 UTC (rev 107441)
+++ trunk/Source/WebCore/ChangeLog	2012-02-10 22:20:53 UTC (rev 107442)
@@ -1,3 +1,14 @@
+2012-02-10  Pavel Podivilov  <podivi...@chromium.org>
+
+        Fix a few typos in IDL exception names.
+        https://bugs.webkit.org/show_bug.cgi?id=78356
+
+        Reviewed by Adam Barth.
+
+        * dom/Node.idl:
+        * notifications/NotificationCenter.idl:
+        * page/Navigator.idl:
+
 2012-02-10  Benjamin Poulain  <bpoul...@apple.com>
 
         DefaultLocalizationStrategy::htmlSelectMultipleItems() should use size_t instead of int

Modified: trunk/Source/WebCore/dom/Node.idl (107441 => 107442)


--- trunk/Source/WebCore/dom/Node.idl	2012-02-10 22:19:03 UTC (rev 107441)
+++ trunk/Source/WebCore/dom/Node.idl	2012-02-10 22:20:53 UTC (rev 107442)
@@ -72,7 +72,7 @@
             raises(DOMException);
         [ObjCLegacyUnnamedParameters, Custom] Node replaceChild(in Node newChild,
                                                                 in [CustomReturn] Node oldChild)
-            raises(DOMExceptionJSC);
+            raises(DOMException);
         [Custom] Node               removeChild(in [CustomReturn] Node oldChild)
             raises(DOMException);
         [Custom] Node               appendChild(in [CustomReturn] Node newChild)

Modified: trunk/Source/WebCore/notifications/NotificationCenter.idl (107441 => 107442)


--- trunk/Source/WebCore/notifications/NotificationCenter.idl	2012-02-10 22:19:03 UTC (rev 107441)
+++ trunk/Source/WebCore/notifications/NotificationCenter.idl	2012-02-10 22:20:53 UTC (rev 107442)
@@ -37,9 +37,9 @@
         OmitConstructor
     ] NotificationCenter {
 #if !defined(ENABLE_TEXT_NOTIFICATIONS_ONLY) || !ENABLE_TEXT_NOTIFICATIONS_ONLY
-       [V8Custom] Notification createHTMLNotification(in DOMString url) raises(Exception);
+       [V8Custom] Notification createHTMLNotification(in DOMString url) raises(DOMException);
 #endif
-       [V8Custom] Notification createNotification(in DOMString iconUrl, in DOMString title, in DOMString body) raises(Exception);
+       [V8Custom] Notification createNotification(in DOMString iconUrl, in DOMString title, in DOMString body) raises(DOMException);
 
        int checkPermission();
        [Custom] void requestPermission(in VoidCallback callback);

Modified: trunk/Source/WebCore/page/Navigator.idl (107441 => 107442)


--- trunk/Source/WebCore/page/Navigator.idl	2012-02-10 22:19:03 UTC (rev 107441)
+++ trunk/Source/WebCore/page/Navigator.idl	2012-02-10 22:20:53 UTC (rev 107442)
@@ -52,7 +52,7 @@
 
 #if defined(ENABLE_REGISTER_PROTOCOL_HANDLER) && ENABLE_REGISTER_PROTOCOL_HANDLER
         void registerProtocolHandler(in DOMString scheme, in DOMString url, in DOMString title)
-            raises(DomException);
+            raises(DOMException);
 #endif
 
 #if defined(ENABLE_MEDIA_STREAM) && ENABLE_MEDIA_STREAM
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to