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

Unified Diff: Source/bindings/v8/V8Binding.h

Issue 21274004: Fix Document leak from NodeFilter. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add TreeWalker leak test Created 7 years, 5 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/v8/V8Binding.h
diff --git a/Source/bindings/v8/V8Binding.h b/Source/bindings/v8/V8Binding.h
index 8571a529d11e2531519e9852cf75db66a3141902..34bff7413911660ccc47aaed5c8011169f7100a9 100644
--- a/Source/bindings/v8/V8Binding.h
+++ b/Source/bindings/v8/V8Binding.h
@@ -48,7 +48,6 @@ namespace WebCore {
class DOMWindow;
class Document;
class Frame;
- class NodeFilter;
class ScriptExecutionContext;
class ScriptWrappable;
class XPathNSResolver;
@@ -512,8 +511,6 @@ namespace WebCore {
return v8Value;
}
- PassRefPtr<NodeFilter> toNodeFilter(v8::Handle<v8::Value>);
-
inline bool isUndefinedOrNull(v8::Handle<v8::Value> value)
{
return value->IsNull() || value->IsUndefined();

Powered by Google App Engine
This is Rietveld 408576698