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