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

Unified Diff: Source/core/css/DOMWindowCSS.h

Issue 1176713003: Make the CSS interface members static (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updating test expectations Created 5 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: Source/core/css/DOMWindowCSS.h
diff --git a/Source/core/css/DOMWindowCSS.h b/Source/core/css/DOMWindowCSS.h
index b36ed5243de5e53e2be8aeb3ca697fb8fb71c254..d18d4d453e9e82af3a815bc032441bd3c29e6cae 100644
--- a/Source/core/css/DOMWindowCSS.h
+++ b/Source/core/css/DOMWindowCSS.h
@@ -43,8 +43,8 @@ class DOMWindowCSS : public RefCountedWillBeGarbageCollected<DOMWindowCSS>, publ
public:
static PassRefPtrWillBeRawPtr<DOMWindowCSS> create();
Timothy Loh 2015/06/11 01:06:36 unneeded now?
ramya.v 2015/06/11 06:25:32 Used only by LocalDOMWindow. No longer needed. Don
- bool supports(const String& property, const String& value) const;
- bool supports(const String& conditionText) const;
+ static bool supports(const String& property, const String& value);
+ static bool supports(const String& conditionText);
DEFINE_INLINE_TRACE() { }

Powered by Google App Engine
This is Rietveld 408576698