| Index: third_party/WebKit/Source/web/InspectorEmulationAgent.h
|
| diff --git a/third_party/WebKit/Source/web/InspectorEmulationAgent.h b/third_party/WebKit/Source/web/InspectorEmulationAgent.h
|
| index 87e216897a5c98c1badcf7f0e885fd2ffbe57f8e..f3e906b972370da672822f6a2e8f779d855382da 100644
|
| --- a/third_party/WebKit/Source/web/InspectorEmulationAgent.h
|
| +++ b/third_party/WebKit/Source/web/InspectorEmulationAgent.h
|
| @@ -22,7 +22,7 @@ public:
|
| virtual void setCPUThrottlingRate(double rate) {}
|
| };
|
|
|
| - static PassOwnPtrWillBeRawPtr<InspectorEmulationAgent> create(WebLocalFrameImpl*, Client*);
|
| + static RawPtr<InspectorEmulationAgent> create(WebLocalFrameImpl*, Client*);
|
| ~InspectorEmulationAgent() override;
|
|
|
| // protocol::Dispatcher::EmulationCommandHandler implementation.
|
| @@ -43,7 +43,7 @@ private:
|
| InspectorEmulationAgent(WebLocalFrameImpl*, Client*);
|
| WebViewImpl* webViewImpl();
|
|
|
| - RawPtrWillBeMember<WebLocalFrameImpl> m_webLocalFrameImpl;
|
| + Member<WebLocalFrameImpl> m_webLocalFrameImpl;
|
| Client* m_client;
|
| };
|
|
|
|
|