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

Unified Diff: Source/bindings/tests/results/core/V8TestCallbackInterface.h

Issue 563703002: Oilpan: Enable oilpan for callback classes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | « Source/bindings/templates/methods.cpp ('k') | Source/bindings/tests/results/core/V8TestObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/results/core/V8TestCallbackInterface.h
diff --git a/Source/bindings/tests/results/core/V8TestCallbackInterface.h b/Source/bindings/tests/results/core/V8TestCallbackInterface.h
index 2a76b2b0c554b91b6b3c3771fe27c1fea1fbab1e..0756bfc48ead372359f4ec8f8e2874dbe5d2272d 100644
--- a/Source/bindings/tests/results/core/V8TestCallbackInterface.h
+++ b/Source/bindings/tests/results/core/V8TestCallbackInterface.h
@@ -16,9 +16,9 @@ namespace blink {
class V8TestCallbackInterface FINAL : public TestCallbackInterface, public ActiveDOMCallback {
public:
- static PassOwnPtrWillBeRawPtr<V8TestCallbackInterface> create(v8::Handle<v8::Function> callback, ScriptState* scriptState)
+ static V8TestCallbackInterface* create(v8::Handle<v8::Function> callback, ScriptState* scriptState)
{
- return adoptPtrWillBeNoop(new V8TestCallbackInterface(callback, scriptState));
+ return new V8TestCallbackInterface(callback, scriptState);
}
virtual ~V8TestCallbackInterface();
« no previous file with comments | « Source/bindings/templates/methods.cpp ('k') | Source/bindings/tests/results/core/V8TestObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698