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

Unified Diff: Source/bindings/dart/DartUtilities.cpp

Issue 185643003: Changes to use the modified dart API for (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/1750/
Patch Set: Created 6 years, 10 months 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/dart/DartStringCache.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/dart/DartUtilities.cpp
===================================================================
--- Source/bindings/dart/DartUtilities.cpp (revision 168317)
+++ Source/bindings/dart/DartUtilities.cpp (working copy)
@@ -568,9 +568,9 @@
RefPtr<ArrayBufferView> m_view;
};
-static void externalArrayBufferCallback(Dart_WeakPersistentHandle handle, void* peer)
+static void externalArrayBufferCallback(Dart_Isolate isolate, Dart_WeakPersistentHandle handle, void* peer)
{
- Dart_DeleteWeakPersistentHandle(handle);
+ Dart_DeleteWeakPersistentHandle(isolate, handle);
delete reinterpret_cast<TypedDataPeer*>(peer);
}
« no previous file with comments | « Source/bindings/dart/DartStringCache.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698