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

Unified Diff: third_party/WebKit/Source/core/css/cssom/StylePropertyMapReadonly.h

Issue 2791193004: [Typed CSSOM] New design for computed styles which includes custom properties (Closed)
Patch Set: tidy up Created 3 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/StylePropertyMapReadonly.h
diff --git a/third_party/WebKit/Source/core/css/cssom/StylePropertyMapReadonly.h b/third_party/WebKit/Source/core/css/cssom/StylePropertyMapReadonly.h
index 9a60511969575146364f0920f2ff146c67f53de0..6d2200fa5a1a5f489911cf443fb9565ff25dfdf7 100644
--- a/third_party/WebKit/Source/core/css/cssom/StylePropertyMapReadonly.h
+++ b/third_party/WebKit/Source/core/css/cssom/StylePropertyMapReadonly.h
@@ -41,8 +41,10 @@ class CORE_EXPORT StylePropertyMapReadonly
StylePropertyMapReadonly() = default;
virtual CSSStyleValueVector getAllInternal(CSSPropertyID) = 0;
- virtual CSSStyleValueVector getAllInternal(
- AtomicString customPropertyName) = 0;
+ // TODO(rjwright): Remove the ExceptionState arg once
+ // InlineStypePropertyMap::getAllInternal is implemented.
+ virtual CSSStyleValueVector getAllInternal(AtomicString customPropertyName,
+ ExceptionState&) = 0;
virtual HeapVector<StylePropertyMapEntry> getIterationEntries() = 0;
IterationSource* startIteration(ScriptState*, ExceptionState&) override;

Powered by Google App Engine
This is Rietveld 408576698