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

Side by Side Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIMethods.json5

Issue 2669243009: Added CSSPropertyAPIMethods.json5 which defines all API methods. (Closed)
Patch Set: removed accidental comma Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 {
2 // This file specifies all the methods in CSSPropertyAPI.h and the neces sary
3 // information for code generation of the API and it's related classes.
4 parameters: {
5 name: {
6 default: "",
7 valid_type: "str",
8 },
9
10 return_type: {
sashab 2017/02/10 00:58:33 Add comments for these
11 default: "",
12 valid_type: "str",
13 },
14
15 parameters: {
16 default: "",
17 valid_type: "str",
18 }
19 },
20 data: [
21 {
22 name: "parseSingleValue",
23 return_type: "const CSSValue*",
24 parameters: "(CSSParserTokenRange&, const CSSParserContext*)"
25 },
26 {
27 name: "parseShorthand",
28 return_type: "bool",
29 parameters: "(bool, CSSParserTokenRange&, const CSSParserConte xt*)"
30 },
31 ]
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698