RESOLVED FIXED 110781
[V8] Generate a wrapper function for ReplaceableAttrSetter()
https://bugs.webkit.org/show_bug.cgi?id=110781
Summary [V8] Generate a wrapper function for ReplaceableAttrSetter()
Kentaro Hara
Reported 2013-02-25 12:21:42 PST
This is one of steps to insert TRACE_EVENT_STATE() macros into DOM bindings. This patch introduces an indirection function for xxxReplaceableAttrSetter(), like this: // For non-custom replaceable setters (Note: One implementation is enough for all replaceable setters in one interface.) void V8XXX:::ReplaceableAttrSetterCallback(...) { V8XXX::ReplaceableAttrSetter(...); } // For custom replaceable setters. (Note: This is treated as a normal custom setter.) void xxxAttrSetterCallback(...) { return xxxAttrSetterCustom(...); }
Attachments
Patch (9.67 KB, patch)
2013-02-25 12:24 PST, Kentaro Hara
abarth: review+
webkit.review.bot: commit-queue-
Kentaro Hara
Comment 1 2013-02-25 12:24:41 PST
WebKit Review Bot
Comment 2 2013-02-27 00:53:45 PST
Comment on attachment 190103 [details] Patch Rejecting attachment 190103 [details] from commit-queue. Failed to run "['/mnt/git/webkit-commit-queue/Tools/Scripts/webkit-patch', '--status-host=webkit-commit-queue.appspot.com', '--bot-id=gce-cq-04', 'apply-attachment', '--no-update', '--non-interactive', 190103, '--port=chromium-xvfb']" exit_code: 2 cwd: /mnt/git/webkit-commit-queue Last 500 characters of output: rej patching file Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp Hunk #1 succeeded at 1548 (offset 252 lines). Hunk #2 succeeded at 2896 (offset 606 lines). Hunk #3 succeeded at 2933 with fuzz 1 (offset 606 lines). patching file Source/WebCore/bindings/scripts/test/V8/V8TestTypedefs.cpp Hunk #1 succeeded at 252 (offset 30 lines). Failed to run "[u'/mnt/git/webkit-commit-queue/Tools/Scripts/svn-apply', '--force', '--reviewer', 'Adam Barth']" exit_code: 1 cwd: /mnt/git/webkit-commit-queue Full output: http://webkit-commit-queue.appspot.com/results/16771578
Kentaro Hara
Comment 3 2013-02-27 08:43:56 PST
Note You need to log in before you can comment on or make changes to this bug.