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

Unified Diff: Source/bindings/tests/results/core/V8ArrayBuffer.cpp

Issue 698023005: Move the v8::Isolate* parameter to the first parameter of various binding methods in third_party/We… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/templates/methods.cpp ('k') | Source/bindings/tests/results/core/V8DataView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/results/core/V8ArrayBuffer.cpp
diff --git a/Source/bindings/tests/results/core/V8ArrayBuffer.cpp b/Source/bindings/tests/results/core/V8ArrayBuffer.cpp
index 1ff7d6a64f755eeade60a31a69e85a4d93a3ca3c..8c76ad7e68e57de4dfffa7f91ca915471a772c55 100644
--- a/Source/bindings/tests/results/core/V8ArrayBuffer.cpp
+++ b/Source/bindings/tests/results/core/V8ArrayBuffer.cpp
@@ -54,7 +54,7 @@ TestArrayBuffer* V8ArrayBuffer::toImpl(v8::Handle<v8::Object> object)
// DOMArrayBufferDeallocationObserver::blinkAllocatedMemory.
buffer->buffer()->setDeallocationObserverWithoutAllocationNotification(
DOMArrayBufferDeallocationObserver::instance());
- buffer->associateWithWrapper(buffer->wrapperTypeInfo(), object, v8::Isolate::GetCurrent());
+ buffer->associateWithWrapper(v8::Isolate::GetCurrent(), buffer->wrapperTypeInfo(), object);
return buffer.get();
}
« no previous file with comments | « Source/bindings/templates/methods.cpp ('k') | Source/bindings/tests/results/core/V8DataView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698