| Index: third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp b/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp
|
| index 410ba43318d8c81b55f7026d4a2356198c161ebc..b28a4247316efd2937594c07a0a075f2efe7b508 100644
|
| --- a/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/NavigatorContentUtilsClientImpl.cpp
|
| @@ -9,9 +9,9 @@
|
|
|
| namespace blink {
|
|
|
| -PassOwnPtrWillBeRawPtr<NavigatorContentUtilsClientImpl> NavigatorContentUtilsClientImpl::create(WebLocalFrameImpl* webFrame)
|
| +RawPtr<NavigatorContentUtilsClientImpl> NavigatorContentUtilsClientImpl::create(WebLocalFrameImpl* webFrame)
|
| {
|
| - return adoptPtrWillBeNoop(new NavigatorContentUtilsClientImpl(webFrame));
|
| + return new NavigatorContentUtilsClientImpl(webFrame);
|
| }
|
|
|
| NavigatorContentUtilsClientImpl::NavigatorContentUtilsClientImpl(WebLocalFrameImpl* webFrame)
|
|
|