Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
|
maxbogue
2017/01/04 01:42:45
2017! @_@
| |
| 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 // given to Sync to uniquely identify an entity of ModelType syncer::AUTOFILL. | |
|
pavely
2017/01/04 18:09:56
Consider "given to Sync" => "passed to sync as sto
skym
2017/01/05 01:31:51
Done.
| |
| 13 message AutofillSyncStorageKey { | |
| 14 required string name = 1; | |
| 15 required string value = 2; | |
| 16 } | |
| OLD | NEW |