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(); |