| Index: third_party/WebKit/Source/core/html/HTMLIFrameElementSandbox.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElementSandbox.h b/third_party/WebKit/Source/core/html/HTMLIFrameElementSandbox.h
|
| index b88aee1ed419a040566cda353e9e2da2f0c05818..913805a57db5ac0111e8e08e4597cf51392f3e99 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLIFrameElementSandbox.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLIFrameElementSandbox.h
|
| @@ -11,9 +11,9 @@ namespace blink {
|
|
|
| class HTMLIFrameElementSandbox final : public DOMSettableTokenList {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<HTMLIFrameElementSandbox> create(DOMSettableTokenListObserver* observer = nullptr)
|
| + static RawPtr<HTMLIFrameElementSandbox> create(DOMSettableTokenListObserver* observer = nullptr)
|
| {
|
| - return adoptRefWillBeNoop(new HTMLIFrameElementSandbox(observer));
|
| + return (new HTMLIFrameElementSandbox(observer));
|
| }
|
|
|
| ~HTMLIFrameElementSandbox() override;
|
|
|