OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 syntax = "proto2"; | |
6 | |
7 option optimize_for = LITE_RUNTIME; | |
8 | |
9 package autofill; | |
10 | |
11 // Used to convert between autofill::AutofillKey and a std::string that can be | |
12 // passed to sync as storage key to uniquely identify an entity of ModelType | |
13 // syncer::AUTOFILL. | |
14 message AutofillSyncStorageKey { | |
15 required string name = 1; | |
Mathieu
2017/01/06 01:51:29
I don't particularly like "required" because I bel
skym
2017/01/06 18:29:04
I didn't realize that required was generally frown
| |
16 required string value = 2; | |
17 } | |
OLD | NEW |