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

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

Issue 15899009: Support indexed setter generation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 7 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: Source/core/dom/DOMStringMap.h
diff --git a/Source/core/dom/DOMStringMap.h b/Source/core/dom/DOMStringMap.h
index f0dff123a1efa46af3c3c0c3b53118d5463a8f70..ece062e13c022519fbb31323f44db182fe8340d6 100644
--- a/Source/core/dom/DOMStringMap.h
+++ b/Source/core/dom/DOMStringMap.h
@@ -49,7 +49,7 @@ public:
virtual bool contains(const String& name) = 0;
virtual void setItem(const String& name, const String& value, ExceptionCode&) = 0;
virtual void deleteItem(const String& name, ExceptionCode&) = 0;
- bool anonymousNamedSetter(const String& name, const String& value, ExceptionCode& ec)
+ bool anonymousNamedSetter(const String& name, const String& value, bool isValueNull, bool isValueUndefined, ExceptionCode& ec)
{
setItem(name, value, ec);
return true;

Powered by Google App Engine
This is Rietveld 408576698