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

Unified Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyFunctions.h

Issue 2202453002: Remove the CSS Properties API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More removals Created 4 years, 5 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 | « third_party/WebKit/Source/core/css/properties/CSSPropertyDescriptor.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/properties/CSSPropertyFunctions.h
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyFunctions.h b/third_party/WebKit/Source/core/css/properties/CSSPropertyFunctions.h
deleted file mode 100644
index a17b2091b8f165386a0fee92ebc9c53d1ee83c45..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/css/properties/CSSPropertyFunctions.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CSSPropertyFunctions_h
-#define CSSPropertyFunctions_h
-
-#include "core/CSSPropertyNames.h"
-#include "core/css/CSSValue.h"
-#include "wtf/PassRefPtr.h"
-
-namespace blink {
-
-class CSSParserContext;
-class CSSParserTokenRange;
-
-// The parent class for all properties that implement the CSSPropertyDescriptor API.
-// Contains static function signatures as a reference of what needs to be implemented
-// in the child classes.
-class CSSPropertyFunctions {
- STATIC_ONLY(CSSPropertyFunctions);
-public:
- static CSSPropertyID id();
-
- // Consumes and parses a single value for this property from by the token range,
- // returning the corresponding CSSValue. This function does not check for the end
- // of the token range. Returns nullptr if the input is invalid.
- static CSSValue* parseSingleValue(CSSParserTokenRange&, const CSSParserContext&);
- using parseSingleValueFunction = decltype(&parseSingleValue);
-};
-
-} // namespace blink
-
-#endif // CSSPropertyFunctions_h
« no previous file with comments | « third_party/WebKit/Source/core/css/properties/CSSPropertyDescriptor.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698