Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Unified Diff: third_party/WebKit/Source/core/html/HTMLIFrameElementSandbox.h

Issue 1629403003: Merge DOMSettableTokensList into DOMTokensList (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed non-oilpan inheritance Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};

Powered by Google App Engine
This is Rietveld 408576698