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

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

Issue 2730633004: [CSS Typed OM] Rearrange StylePropertyMap classes to match the new spec. (Closed)
Patch Set: Remove spurious : Created 3 years, 9 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
index 49d044a0549f18a634b2d839a477f543db393b49..6d9aab5c0cf6c04c4d038d70762ff5ec5dbfb92b 100644
--- a/third_party/WebKit/Source/core/css/cssom/WindowGetComputedStyle.h
+++ b/third_party/WebKit/Source/core/css/cssom/WindowGetComputedStyle.h
@@ -14,9 +14,10 @@ class WindowGetComputedStyle {
STATIC_ONLY(WindowGetComputedStyle);
public:
- static StylePropertyMap* getComputedStyleMap(const LocalDOMWindow&,
- Element* element,
- const String& pseudoElement) {
+ static StylePropertyMapReadonly* getComputedStyleMap(
+ const LocalDOMWindow&,
+ Element* element,
+ const String& pseudoElement) {
DCHECK(element);
return ComputedStylePropertyMap::create(element, pseudoElement);
}

Powered by Google App Engine
This is Rietveld 408576698