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

Unified Diff: third_party/WebKit/Source/core/dom/DOMStringMap.h

Issue 2321073002: binding: Let indexed interceptor falls through to named interceptor. (Closed)
Patch Set: Updated global-interface-listing expectations. Created 4 years, 3 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/dom/DOMStringMap.h
diff --git a/third_party/WebKit/Source/core/dom/DOMStringMap.h b/third_party/WebKit/Source/core/dom/DOMStringMap.h
index 42d5e99e8223cb12bb291cb6167054cd5dd5c11b..41929930d7d214da794c3ada3a0527d3b6e3ecc2 100644
--- a/third_party/WebKit/Source/core/dom/DOMStringMap.h
+++ b/third_party/WebKit/Source/core/dom/DOMStringMap.h
@@ -63,19 +63,6 @@ public:
}
bool namedPropertyQuery(const AtomicString&, ExceptionState&);
- String anonymousIndexedGetter(uint32_t index)
- {
- return item(String::number(index));
- }
- bool anonymousIndexedSetter(uint32_t index, const String& value, ExceptionState& exceptionState)
- {
- return anonymousNamedSetter(String::number(index), value, exceptionState);
- }
- DeleteResult anonymousIndexedDeleter(uint32_t index)
- {
- return anonymousNamedDeleter(AtomicString::number(index));
- }
-
virtual Element* element() = 0;
DEFINE_INLINE_VIRTUAL_TRACE() { }

Powered by Google App Engine
This is Rietveld 408576698