Chromium Code Reviews

Unified Diff: Source/core/inspector/InspectorTracingAgent.h

Issue 307943002: Oilpan: Prepare moving InspectorController and InspectorAgents to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Crashing Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/inspector/InspectorTracingAgent.h
diff --git a/Source/core/inspector/InspectorTracingAgent.h b/Source/core/inspector/InspectorTracingAgent.h
index 3b33277d6a04cd94c02a800e2b484aff859b1de3..388cd4b90f5c503f22519276e942321a5a8d587f 100644
--- a/Source/core/inspector/InspectorTracingAgent.h
+++ b/Source/core/inspector/InspectorTracingAgent.h
@@ -21,9 +21,9 @@ class InspectorTracingAgent FINAL
, public InspectorBackendDispatcher::TracingCommandHandler {
WTF_MAKE_NONCOPYABLE(InspectorTracingAgent);
public:
- static PassOwnPtr<InspectorTracingAgent> create(InspectorClient* client)
+ static PassOwnPtrWillBeRawPtr<InspectorTracingAgent> create(InspectorClient* client)
{
- return adoptPtr(new InspectorTracingAgent(client));
+ return adoptPtrWillBeNoop(new InspectorTracingAgent(client));
}
// Base agent methods.

Powered by Google App Engine