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

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

Issue 1849653003: Implement ComputedStylePropertyMap for Typed OM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@maps-inline
Patch Set: Update LayoutTests 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/WindowGetComputedStyle.h
diff --git a/third_party/WebKit/Source/core/css/cssom/WindowGetComputedStyle.h b/third_party/WebKit/Source/core/css/cssom/WindowGetComputedStyle.h
new file mode 100644
index 0000000000000000000000000000000000000000..1fa20e89dd1043c07a060c5b3586906cee6e5a35
--- /dev/null
+++ b/third_party/WebKit/Source/core/css/cssom/WindowGetComputedStyle.h
@@ -0,0 +1,26 @@
+// 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 WindowGetComputedStyle_h
+#define WindowGetComputedStyle_h
+
+#include "core/css/CSSComputedStyleDeclaration.h"
+#include "core/css/cssom/ComputedStylePropertyMap.h"
+
+namespace blink {
+
+class WindowGetComputedStyle {
+ STATIC_ONLY(WindowGetComputedStyle);
+public:
+ static StylePropertyMap* getComputedStyleMap(const DOMWindow&, Element* element, const String& pseudoElement)
+ {
+ DCHECK(element);
+ CSSComputedStyleDeclaration* computedStyleDeclaration = CSSComputedStyleDeclaration::create(element, false, pseudoElement);
+ return ComputedStylePropertyMap::create(computedStyleDeclaration);
+ }
+};
+
+} // namespace blink
+
+#endif // WindowGetComputedStyle_h

Powered by Google App Engine
This is Rietveld 408576698