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

Side by Side Diff: third_party/WebKit/Source/modules/indexeddb/IndexedDBNames.json5

Issue 2638233002: Convert make_names and make_event_factory to use json5 config format. (Closed)
Patch Set: fix PLATFORM_EXPORT 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 metadata: {
3 namespace: "IndexedDB",
4 },
5
6 data: [
7 "IndexedDB",
8
9 // http://www.w3.org/TR/IndexedDB///idl-def-IDBCursorDirection
10 "next",
11 "nextunique",
12 "prev",
13 "prevunique",
14
15 // http://www.w3.org/TR/IndexedDB///idl-def-IDBTransactionMode
16 "readonly",
17 "readwrite",
18 "versionchange",
19
20 // http://www.w3.org/TR/IndexedDB///idl-def-IDBRequestReadyState
21 "pending",
22 "done",
23
24 // http://www.w3.org/TR/IndexedDB///idl-def-IDBVersionChangeEvent
25 // FIXME: This enum is non-standard, see
26 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=22370
27 "none",
28 "total",
29
30 // https://github.com/WICG/indexed-db-observers/blob/gh-pages/EXPLAINER.md// records
31 "add",
32 "put",
33 {
34 name: "delete",
35 Symbol: "kDelete",
36 },
37 "clear",
38 ],
39 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/indexeddb/IndexedDBNames.in ('k') | third_party/WebKit/Source/platform/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698