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

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

Issue 2054633002: [Typed OM] Implement FilteredComputedStylePropertyMap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CORE_EXPORT FilteredCSPMap Created 4 years, 6 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/FilteredComputedStylePropertyMap.h
diff --git a/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.h b/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.h
new file mode 100644
index 0000000000000000000000000000000000000000..83f6152999bdb9cf9bafb6b2362cb67f941a8387
--- /dev/null
+++ b/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.h
@@ -0,0 +1,37 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef FilteredComputedStylePropertyMap_h
+#define FilteredComputedStylePropertyMap_h
+
+#include "core/CoreExport.h"
+#include "core/css/CSSPropertyIDTemplates.h"
+#include "core/css/cssom/ComputedStylePropertyMap.h"
+
+namespace blink {
+
+class CORE_EXPORT FilteredComputedStylePropertyMap : public ComputedStylePropertyMap {
+ WTF_MAKE_NONCOPYABLE(FilteredComputedStylePropertyMap);
+public:
+ static FilteredComputedStylePropertyMap* create(CSSComputedStyleDeclaration* computedStyleDeclaration, const Vector<CSSPropertyID>& nativeProperties, const Vector<AtomicString>& customProperties)
+ {
+ return new FilteredComputedStylePropertyMap(computedStyleDeclaration, nativeProperties, customProperties);
+ }
+
+ CSSStyleValue* get(const String& propertyName, ExceptionState&) override;
+ CSSStyleValueVector getAll(const String& propertyName, ExceptionState&) override;
+ bool has(const String& propertyName, ExceptionState&) override;
+
+ Vector<String> getProperties() override;
+
+private:
+ FilteredComputedStylePropertyMap(CSSComputedStyleDeclaration*, const Vector<CSSPropertyID>& nativeProperties, const Vector<AtomicString>& customProperties);
+
+ HashSet<CSSPropertyID> m_nativeProperties;
+ HashSet<AtomicString> m_customProperties;
+};
+
+} // namespace blink
+
+#endif // FilteredComputedStylePropertyMap_h

Powered by Google App Engine
This is Rietveld 408576698