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

Unified Diff: third_party/WebKit/Source/core/html/HTMLOutputElement.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/HTMLOutputElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLOutputElement.h b/third_party/WebKit/Source/core/html/HTMLOutputElement.h
index 924cfabaad56b88a78bc3dd5008b65ebb6b713d9..d61adf0011f93eaa91bfe10d32e8330bd17ec07c 100644
--- a/third_party/WebKit/Source/core/html/HTMLOutputElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLOutputElement.h
@@ -31,12 +31,12 @@
#ifndef HTMLOutputElement_h
#define HTMLOutputElement_h
-#include "core/dom/DOMSettableTokenList.h"
+#include "core/dom/DOMTokenList.h"
#include "core/html/HTMLFormControlElement.h"
namespace blink {
-class CORE_EXPORT HTMLOutputElement final : public HTMLFormControlElement, private DOMSettableTokenListObserver {
+class CORE_EXPORT HTMLOutputElement final : public HTMLFormControlElement, private DOMTokenListObserver {
DEFINE_WRAPPERTYPEINFO();
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLOutputElement);
public:
@@ -50,7 +50,7 @@ public:
String defaultValue() const;
void setDefaultValue(const String&);
void setFor(const AtomicString&);
- DOMSettableTokenList* htmlFor() const;
+ DOMTokenList* htmlFor() const;
bool canContainRangeEndPoint() const override { return false; }
@@ -71,7 +71,7 @@ private:
bool m_isDefaultValueMode;
String m_defaultValue;
- RefPtrWillBeMember<DOMSettableTokenList> m_tokens;
+ RefPtrWillBeMember<DOMTokenList> m_tokens;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698