bindings: Don't wrap nullable callback functions in Nullable<T>
The code generator wrongly uses `Nullable<Callback*>` when nullable callback functions are used like below: callback C = void(); interface I { void f(C? callback); } Since C++ impl of callback functions are garbage collected types, we can just use `Callback*`. BUG=675859 Review-Url: https://codereview.chromium.org/2588303002 Cr-Commit-Position: refs/heads/master@{#439816}
Showing
Please register or sign in to comment