⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 98385 in webkit


Ignore:
Timestamp:
Oct 25, 2011, 1:36:54 PM (15 years ago)
Author:
podivilov@chromium.org
Message:

Fix several minor problems in idls.
https://bugs.webkit.org/show_bug.cgi?id=70811

Reviewed by Adam Barth.

This patch does not have any effect on generated bindings.

  • dom/DataTransferItems.idl:
  • page/History.idl:
  • storage/IDBIndex.idl:
  • xml/XMLHttpRequest.idl:
Location:
trunk/Source/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r98380 r98385  
     12011-10-25  Pavel Podivilov  <podivilov@chromium.org>
     2
     3        Fix several minor problems in idls.
     4        https://bugs.webkit.org/show_bug.cgi?id=70811
     5
     6        Reviewed by Adam Barth.
     7
     8        This patch does not have any effect on generated bindings.
     9
     10        * dom/DataTransferItems.idl:
     11        * page/History.idl:
     12        * storage/IDBIndex.idl:
     13        * xml/XMLHttpRequest.idl:
     14
    1152011-10-25  Nate Chapin  <japhet@chromium.org>
    216
  • trunk/Source/WebCore/dom/DataTransferItems.idl

    r92433 r98385  
    3939    ] DataTransferItems {
    4040        readonly attribute long length;
    41         DataTransferItem item(in [Optional=CallWithDefaultValue] unsigned long index) getter;
     41        DataTransferItem item(in [Optional=CallWithDefaultValue] unsigned long index);
    4242
    4343        void clear();
  • trunk/Source/WebCore/page/History.idl

    r92247 r98385  
    4343        [DoNotCheckDomainSecurity, CallWith=ScriptExecutionContext] void go(in [Optional=CallWithDefaultValue] long distance);
    4444       
    45         [Custom, EnabledAtRuntime] void pushState(in any data, in DOMString title, in optional DOMString url)
     45        [Custom, EnabledAtRuntime] void pushState(in any data, in DOMString title, in [Optional] DOMString url)
    4646            raises(DOMException);
    47         [Custom, EnabledAtRuntime] void replaceState(in any data, in DOMString title, in optional DOMString url)
     47        [Custom, EnabledAtRuntime] void replaceState(in any data, in DOMString title, in [Optional] DOMString url)
    4848            raises(DOMException);
    4949    };
  • trunk/Source/WebCore/storage/IDBIndex.idl

    r89377 r98385  
    3636        [CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] IDBKeyRange range, in [Optional] unsigned short direction)
    3737            raises (IDBDatabaseException);
    38         [CallWith=ScriptExecutionContext] IDBRequest openKeyCursor(in [Optional] IDBKeyRange range, in [Optional] unsigned short direction))
     38        [CallWith=ScriptExecutionContext] IDBRequest openKeyCursor(in [Optional] IDBKeyRange range, in [Optional] unsigned short direction)
    3939            raises (IDBDatabaseException);
    4040        [CallWith=ScriptExecutionContext] IDBRequest get(in IDBKey key)
  • trunk/Source/WebCore/xml/XMLHttpRequest.idl

    r97581 r98385  
    6565        attribute boolean withCredentials
    6666            setter raises(DOMException);
    67         // void open(in DOMString method, in DOMString url);
    68         // void open(in DOMString method, in DOMString url, in boolean async);
    69         // void open(in DOMString method, in DOMString url, in boolean async, in DOMString user);
    70         [Custom] void open(in DOMString method, in DOMString url, in boolean async, in DOMString user, in DOMString password)
     67
     68        [Custom] void open(in DOMString method, in DOMString url, in [Optional] boolean async, in [Optional] DOMString user, in [Optional] DOMString password)
    7169            raises(DOMException);
    7270
Note: See TracChangeset for help on using the changeset viewer.