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

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

Issue 470903003: Remove CSSParserValue::createCSSValue and unused callers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@pp4
Patch Set: fix forward decl Created 6 years, 4 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/CSSCalculationValue.cpp ('k') | Source/core/css/CSSFunctionValue.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSFunctionValue.h
diff --git a/Source/core/css/CSSFunctionValue.h b/Source/core/css/CSSFunctionValue.h
index fa9066f05853ce937f99ecb612291dae11a1e91b..8bf1cdae1a23a92f92eeafee2ab4af2aaa9bdee7 100644
--- a/Source/core/css/CSSFunctionValue.h
+++ b/Source/core/css/CSSFunctionValue.h
@@ -31,15 +31,9 @@
namespace blink {
class CSSValueList;
-struct CSSParserFunction;
class CSSFunctionValue : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSFunctionValue> create(CSSParserFunction* function)
- {
- return adoptRefWillBeNoop(new CSSFunctionValue(function));
- }
-
static PassRefPtrWillBeRawPtr<CSSFunctionValue> create(String name, PassRefPtrWillBeRawPtr<CSSValueList> args)
{
return adoptRefWillBeNoop(new CSSFunctionValue(name, args));
@@ -54,7 +48,6 @@ public:
void traceAfterDispatch(Visitor*);
private:
- explicit CSSFunctionValue(CSSParserFunction*);
CSSFunctionValue(String, PassRefPtrWillBeRawPtr<CSSValueList>);
String m_name;
« no previous file with comments | « Source/core/css/CSSCalculationValue.cpp ('k') | Source/core/css/CSSFunctionValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698