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

Unified Diff: Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp

Issue 23983034: [oilpan] Handlify Node raw pointers in html/ and subclasses of dom/LiveNodeList. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 3 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 | « no previous file | Source/core/dom/ChildNodeList.h » ('j') | Source/core/html/HTMLFrameOwnerElement.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp
diff --git a/Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp b/Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp
index 3b5a23d6e01d014451402b7183cd9b62cfe7a10d..ac7214cacbe83b02ceeec8039c9b012a67aa0866 100644
--- a/Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp
+++ b/Source/bindings/v8/custom/V8HTMLAllCollectionCustom.cpp
@@ -120,8 +120,8 @@ v8::Handle<v8::Value> V8HTMLAllCollection::callAsFunctionCallback(const v8::Argu
if (index.IsEmpty())
return v8::Undefined();
- if (Node* node = imp->namedItemWithIndex(name, index->Uint32Value()))
- return toV8Fast(Handle<Node>(node), args, imp);
+ if (Handle<Node> node = imp->namedItemWithIndex(name, index->Uint32Value()))
+ return toV8Fast(node, args, imp);
return v8::Undefined();
}
« no previous file with comments | « no previous file | Source/core/dom/ChildNodeList.h » ('j') | Source/core/html/HTMLFrameOwnerElement.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698