Changeset 194567 in webkit


Ignore:
Timestamp:
Jan 4, 2016 4:50:56 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Mark last parameter of webkitGetUserMedia as non-optional to match updated IDL
https://bugs.webkit.org/show_bug.cgi?id=152702

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-01-04
Reviewed by Brian Burg.

  • UserInterface/Models/NativeFunctionParameters.js:

New IDL, and tests, show that the error callback is non-optional.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r194547 r194567  
     12016-01-04  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Mark last parameter of webkitGetUserMedia as non-optional to match updated IDL
     4        https://bugs.webkit.org/show_bug.cgi?id=152702
     5
     6        Reviewed by Brian Burg.
     7
     8        * UserInterface/Models/NativeFunctionParameters.js:
     9        New IDL, and tests, show that the error callback is non-optional.
     10
    1112016-01-04  Devin Rousso  <dcrousso+webkit@gmail.com>
    212
  • trunk/Source/WebInspectorUI/UserInterface/Models/NativeFunctionParameters.js

    r192945 r194567  
    11091109
    11101110    Navigator: {
    1111         webkitGetUserMedia: "options, successCallback, [errorCallback]",
     1111        webkitGetUserMedia: "options, successCallback, errorCallback",
    11121112        __proto__: null,
    11131113    },
Note: See TracChangeset for help on using the changeset viewer.