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

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: Fixed Created 6 years, 6 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/core/inspector/InspectorTracingAgent.h
diff --git a/Source/core/inspector/InspectorTracingAgent.h b/Source/core/inspector/InspectorTracingAgent.h
index 307a2168374ff95a5b19b947eb313107ae83e165..69ef82daf4d0f4a11715961962d5a4ee005e17e0 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
This is Rietveld 408576698