Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Issue 698023005: Move the v8::Isolate* parameter to the first parameter of various binding methods in third_party/We… (Closed)

Created:
6 years, 1 month ago by RAGHURAM
Modified:
6 years, 1 month ago
Reviewers:
haraken
CC:
blink-reviews, eae+blinkwatch, apavlov+blink_chromium.org, aandrey+blink_chromium.org, rwlbuis, caseq+blink_chromium.org, arv+blink, malch+blink_chromium.org, blink-reviews-html_chromium.org, yurys+blink_chromium.org, blink-reviews-dom_chromium.org, dglazkov+blink, blink-reviews-bindings_chromium.org, devtools-reviews_chromium.org, loislo+blink_chromium.org, sof, lushnikov+blink_chromium.org, Raymond Toy, eustas+blink_chromium.org, paulirish+reviews_chromium.org, vsevik+blink_chromium.org, pfeldman+blink_chromium.org, sergeyv+blink_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Project:
blink
Visibility:
Public.

Description

Move the v8::Isolate* parameter to the first parameter of various binding methods in third_party/WebKit/Source/bindings This step is to move the v8::Isolate* parameter to the first parameter of various binding methods in third_party/WebKit/Source/bindings (Ref: binding-methods changed: LocalDOMWindow* toDOMWindow(v8::Handle<v8::Value>, v8::Isolate*) virtual v8::Handle<v8::Object> associateWithWrapper(const WrapperTypeInfo*, v8::Handle<v8::Object> wrapper, v8::Isolate*)) BUG=424446 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=185586

Patch Set 1 #

Patch Set 2 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+75 lines, -75 lines) Patch
M Source/bindings/core/v8/DictionaryHelperForCore.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/core/v8/ScriptProfiler.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/core/v8/ScriptWrappable.h View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/core/v8/ScriptWrappable.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M Source/bindings/core/v8/V8Binding.h View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/core/v8/V8Binding.cpp View 1 2 chunks +2 lines, -2 lines 0 comments Download
M Source/bindings/core/v8/custom/V8InjectedScriptHostCustom.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/core/v8/custom/V8MessageEventCustom.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/core/v8/custom/V8XMLHttpRequestCustom.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/scripts/v8_types.py View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/templates/interface.cpp View 1 3 chunks +3 lines, -3 lines 0 comments Download
M Source/bindings/templates/methods.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/results/core/V8ArrayBuffer.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/results/core/V8DataView.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/results/core/V8TestInterface.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/results/core/V8TestInterface2.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp View 1 7 chunks +7 lines, -7 lines 0 comments Download
M Source/bindings/tests/results/core/V8TestInterfaceConstructor2.cpp View 1 5 chunks +5 lines, -5 lines 0 comments Download
M Source/bindings/tests/results/core/V8TestInterfaceConstructor3.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/results/core/V8TestInterfaceConstructor4.cpp View 1 2 chunks +2 lines, -2 lines 0 comments Download
M Source/bindings/tests/results/core/V8TestInterfaceEventConstructor.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/results/core/V8TestInterfaceEventTarget.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/results/core/V8TestInterfaceGarbageCollected.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/results/core/V8TestInterfaceNamedConstructor.cpp View 1 2 chunks +2 lines, -2 lines 0 comments Download
M Source/bindings/tests/results/core/V8TestInterfaceNamedConstructor2.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/results/core/V8TestInterfaceWillBeGarbageCollected.cpp View 1 2 chunks +2 lines, -2 lines 0 comments Download
M Source/bindings/tests/results/core/V8TestNode.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/results/core/V8TestObject.cpp View 1 2 chunks +2 lines, -2 lines 0 comments Download
M Source/bindings/tests/results/core/V8TestTypedefs.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/bindings/tests/results/core/V8Uint8ClampedArray.cpp View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/DOMArrayBuffer.h View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/DOMArrayBuffer.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/dom/DOMArrayBufferView.h View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/DOMDataView.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/DOMDataView.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/dom/DOMTypedArray.h View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/DOMTypedArray.cpp View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/dom/Document.h View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/Document.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/dom/Node.h View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/Node.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/events/MessageEvent.h View 1 1 chunk +1 line, -1 line 0 comments Download
M Source/core/events/MessageEvent.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/html/ImageData.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/html/ImageData.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/inspector/ScriptArguments.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/webaudio/AudioBuffer.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/webaudio/AudioBuffer.cpp View 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 14 (6 generated)
RAGHURAM
Please Review. One query: one of the methods is in WebKit/Source/modules folder (so any method ...
6 years, 1 month ago (2014-11-11 12:14:13 UTC) #2
haraken
LGTM. > One query: one of the methods is in WebKit/Source/modules folder > (so any ...
6 years, 1 month ago (2014-11-11 13:01:29 UTC) #3
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/698023005/1
6 years, 1 month ago (2014-11-11 13:34:16 UTC) #5
commit-bot: I haz the power
Failed to apply patch for Source/bindings/core/v8/ScriptProfiler.cpp: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
6 years, 1 month ago (2014-11-11 13:34:40 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/698023005/1
6 years, 1 month ago (2014-11-19 06:48:52 UTC) #9
commit-bot: I haz the power
Failed to apply patch for Source/bindings/core/v8/ScriptProfiler.cpp: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
6 years, 1 month ago (2014-11-19 06:49:17 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/698023005/20001
6 years, 1 month ago (2014-11-19 10:52:27 UTC) #13
commit-bot: I haz the power
6 years, 1 month ago (2014-11-19 11:42:31 UTC) #14
Message was sent while issue was closed.
Committed patchset #2 (id:20001) as
https://src.chromium.org/viewvc/blink?view=rev&revision=185586

Powered by Google App Engine
This is Rietveld 408576698