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/css/cssom/StylePropertyMap.h

Issue 1590193002: Partial implementation of inline StylePropertyMap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@maps
Patch Set: Created 4 years, 8 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/css/cssom/StylePropertyMap.h
diff --git a/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.h b/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.h
index 79b873e652ccef8d387c9945d0ac27037f07bc1b..6b3bffbad6e91e2cb6e5e3e7f2a74c367a479789 100644
--- a/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.h
+++ b/third_party/WebKit/Source/core/css/cssom/StylePropertyMap.h
@@ -23,9 +23,9 @@ public:
virtual ~StylePropertyMap() { }
// Accessors.
- StyleValue* get(const String& propertyName);
- HeapVector<Member<StyleValue>> getAll(const String& propertyName);
- bool has(const String& propertyName);
+ StyleValue* get(const String& propertyName, ExceptionState&);
+ HeapVector<Member<StyleValue>> getAll(const String& propertyName, ExceptionState&);
+ bool has(const String& propertyName, ExceptionState&);
virtual StyleValue* get(CSSPropertyID) = 0;
virtual HeapVector<Member<StyleValue>> getAll(CSSPropertyID) = 0;
@@ -46,6 +46,8 @@ public:
protected:
StylePropertyMap() { }
+
+ IterationSource* startIteration(ScriptState*, ExceptionState&) override { return nullptr; }
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698