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..ca3f92b671296f7d3ee13f843a80332ec028588b 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLIFrameElementSandbox.h |
+++ b/third_party/WebKit/Source/core/html/HTMLIFrameElementSandbox.h |
@@ -5,13 +5,13 @@ |
#ifndef HTMLIFrameElementSandbox_h |
#define HTMLIFrameElementSandbox_h |
-#include "core/dom/DOMSettableTokenList.h" |
+#include "core/dom/DOMTokenList.h" |
namespace blink { |
-class HTMLIFrameElementSandbox final : public DOMSettableTokenList { |
+class HTMLIFrameElementSandbox final : public DOMTokenList { |
public: |
- static PassRefPtrWillBeRawPtr<HTMLIFrameElementSandbox> create(DOMSettableTokenListObserver* observer = nullptr) |
+ static PassRefPtrWillBeRawPtr<HTMLIFrameElementSandbox> create(DOMTokenListObserver* observer = nullptr) |
{ |
return adoptRefWillBeNoop(new HTMLIFrameElementSandbox(observer)); |
} |
@@ -19,7 +19,7 @@ public: |
~HTMLIFrameElementSandbox() override; |
private: |
- explicit HTMLIFrameElementSandbox(DOMSettableTokenListObserver*); |
+ explicit HTMLIFrameElementSandbox(DOMTokenListObserver*); |
bool validateTokenValue(const AtomicString&, ExceptionState&) const override; |
}; |