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

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

Issue 808763003: Add a UseCounter for WebKitCSSMatrix (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years 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 | « no previous file | Source/core/css/CSSMatrix.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSMatrix.h
diff --git a/Source/core/css/CSSMatrix.h b/Source/core/css/CSSMatrix.h
index c6cf832f39b0a310d7da646c278270b11cfe429c..df29e7c5d42fb75329d6be83f057378ba12681e8 100644
--- a/Source/core/css/CSSMatrix.h
+++ b/Source/core/css/CSSMatrix.h
@@ -34,6 +34,7 @@
namespace blink {
class ExceptionState;
+class ExecutionContext;
class CSSMatrix final : public RefCountedWillBeGarbageCollected<CSSMatrix>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
@@ -42,10 +43,7 @@ public:
{
return adoptRefWillBeNoop(new CSSMatrix(m));
}
- static PassRefPtrWillBeRawPtr<CSSMatrix> create(const String& s, ExceptionState& exceptionState)
- {
- return adoptRefWillBeNoop(new CSSMatrix(s, exceptionState));
- }
+ static PassRefPtrWillBeRawPtr<CSSMatrix> create(ExecutionContext*, const String&, ExceptionState&);
double a() const { return m_matrix.a(); }
double b() const { return m_matrix.b(); }
« no previous file with comments | « no previous file | Source/core/css/CSSMatrix.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698