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

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

Issue 307943002: Oilpan: Prepare moving InspectorController and InspectorAgents to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/InspectorMemoryAgent.h
diff --git a/Source/core/inspector/InspectorMemoryAgent.h b/Source/core/inspector/InspectorMemoryAgent.h
index bea377955b66154fdd5748932b8d1912c6c7120f..8a80b58ceff42381141663a74896e4f5255ef7f6 100644
--- a/Source/core/inspector/InspectorMemoryAgent.h
+++ b/Source/core/inspector/InspectorMemoryAgent.h
@@ -44,9 +44,9 @@ typedef String ErrorString;
class InspectorMemoryAgent FINAL : public InspectorBaseAgent<InspectorMemoryAgent>, public InspectorBackendDispatcher::MemoryCommandHandler {
WTF_MAKE_NONCOPYABLE(InspectorMemoryAgent);
public:
- static PassOwnPtr<InspectorMemoryAgent> create()
+ static PassOwnPtrWillBeRawPtr<InspectorMemoryAgent> create()
{
- return adoptPtr(new InspectorMemoryAgent());
+ return adoptPtrWillBeNoop(new InspectorMemoryAgent());
}
virtual ~InspectorMemoryAgent();

Powered by Google App Engine
This is Rietveld 408576698