| Index: Source/core/inspector/InspectorMemoryAgent.h | 
| diff --git a/Source/core/inspector/InspectorMemoryAgent.h b/Source/core/inspector/InspectorMemoryAgent.h | 
| index d026071bf5d1257964460218667427bd81a1f652..e53337009ad2a83e5440790a9990cfa624d114e3 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(); | 
|  | 
|  |