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

Unified Diff: Source/bindings/dart/custom/DartBlobCustom.cpp

Issue 26789007: Add a native subtype of function that uses the native C++ class hierarchy to check if an element (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit/
Patch Set: Created 7 years, 2 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
Index: Source/bindings/dart/custom/DartBlobCustom.cpp
===================================================================
--- Source/bindings/dart/custom/DartBlobCustom.cpp (revision 1437)
+++ Source/bindings/dart/custom/DartBlobCustom.cpp (working copy)
@@ -71,7 +71,6 @@
uint32_t length = blobParts.size();
- DartDOMData* domData = static_cast<DartDOMData*>(Dart_GetNativeIsolateData(args));
for (uint32_t i = 0; i < length; ++i) {
Dart_Handle item = blobParts[i];
if (DartUtilities::isTypedData(item)) {
@@ -80,7 +79,7 @@
goto fail;
ASSERT(arrayBuffer);
blobBuilder.append(arrayBuffer.get());
- } else if (DartDOMWrapper::instanceOf<DartBlob>(domData, item)) {
+ } else if (DartDOMWrapper::subtypeOf(item, DartBlob::dartClassId)) {
Blob* blob = DartBlob::toNative(item, exception);
if (exception)
goto fail;
« no previous file with comments | « Source/bindings/dart/DartUtilities.cpp ('k') | Source/bindings/dart/custom/DartCanvasRenderingContext2DCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698