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

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 as per review comments 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
« no previous file with comments | « Source/core/css/CSS.idl ('k') | Source/core/css/DOMWindowCSS.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/DOMWindowCSS.h
diff --git a/Source/core/css/DOMWindowCSS.h b/Source/core/css/DOMWindowCSS.h
index b36ed5243de5e53e2be8aeb3ca697fb8fb71c254..0bedbe2b826a65f1340ff99dbdfc81d0bebd2c7f 100644
--- a/Source/core/css/DOMWindowCSS.h
+++ b/Source/core/css/DOMWindowCSS.h
@@ -41,10 +41,8 @@ namespace blink {
class DOMWindowCSS : public RefCountedWillBeGarbageCollected<DOMWindowCSS>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<DOMWindowCSS> create();
-
- 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() { }
« no previous file with comments | « Source/core/css/CSS.idl ('k') | Source/core/css/DOMWindowCSS.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698