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

Unified Diff: Source/bindings/core/v8/custom/V8CustomXPathNSResolver.cpp

Issue 698923002: Enable Oilpan for core/xml/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Non-Oilpan fixes 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
Index: Source/bindings/core/v8/custom/V8CustomXPathNSResolver.cpp
diff --git a/Source/bindings/core/v8/custom/V8CustomXPathNSResolver.cpp b/Source/bindings/core/v8/custom/V8CustomXPathNSResolver.cpp
index fa23796a3bb037b467ac8aac32280ff1f2fcd039..c2a429e5ed32a4bb7e5bc9f26e09f5da9e38e36e 100644
--- a/Source/bindings/core/v8/custom/V8CustomXPathNSResolver.cpp
+++ b/Source/bindings/core/v8/custom/V8CustomXPathNSResolver.cpp
@@ -43,9 +43,9 @@
namespace blink {
-PassRefPtrWillBeRawPtr<V8CustomXPathNSResolver> V8CustomXPathNSResolver::create(v8::Handle<v8::Object> resolver, v8::Isolate* isolate)
+V8CustomXPathNSResolver* V8CustomXPathNSResolver::create(v8::Handle<v8::Object> resolver, v8::Isolate* isolate)
{
- return adoptRefWillBeNoop(new V8CustomXPathNSResolver(resolver, isolate));
+ return new V8CustomXPathNSResolver(resolver, isolate);
}
V8CustomXPathNSResolver::V8CustomXPathNSResolver(v8::Handle<v8::Object> resolver, v8::Isolate* isolate)
« no previous file with comments | « Source/bindings/core/v8/custom/V8CustomXPathNSResolver.h ('k') | Source/bindings/core/v8/custom/V8DocumentCustom.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698