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

Side by Side Diff: base/prefs/json.proto

Issue 25428002: LevelDBPrefStore Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: latest Created 6 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 | Annotate | Revision Log
« no previous file with comments | « base/base.gyp ('k') | base/prefs/leveldb_pref_store.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 syntax = "proto2";
2
3 package base_prefs;
4
5 option optimize_for = LITE_RUNTIME;
6
7 message JSONProto {
8 enum Type {
9 TYPE_NULL = 0;
10 TYPE_BOOLEAN = 1;
11 TYPE_INTEGER = 2;
12 TYPE_DOUBLE = 3;
13 TYPE_STRING = 4;
14 TYPE_BINARY = 5;
15 TYPE_DICTIONARY = 6;
16 TYPE_LIST = 7;
17 }
18 optional Type type = 1;
19 optional string json = 2;
20 }
21
22 message PrefValue {
23 enum Source {
24 USER = 0;
25 CODE = 1;
26 UNKNOWN = 2;
27 }
28 optional JSONProto json_proto = 1;
29 optional Source source = 2;
30 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/prefs/leveldb_pref_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698