Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // Sync protocol datatype extension for custom search engines. | 5 // Sync protocol datatype extension for custom search engines. |
| 6 | 6 |
| 7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change | 7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change |
| 8 // any fields in this file. | 8 // any fields in this file. |
| 9 | 9 |
| 10 syntax = "proto2"; | 10 syntax = "proto2"; |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 34 optional int64 date_created = 7; | 34 optional int64 date_created = 7; |
| 35 // A list of supported input encodings. | 35 // A list of supported input encodings. |
| 36 optional string input_encodings = 8; | 36 optional string input_encodings = 8; |
| 37 // Whether this entry is shown in the list of default search engines or not. | 37 // Whether this entry is shown in the list of default search engines or not. |
| 38 optional bool show_in_default_list = 9; | 38 optional bool show_in_default_list = 9; |
| 39 // The parameterized URL that provides suggestions as the user types. | 39 // The parameterized URL that provides suggestions as the user types. |
| 40 optional string suggestions_url = 10; | 40 optional string suggestions_url = 10; |
| 41 // The ID associated with the prepopulate data this search engine comes from. | 41 // The ID associated with the prepopulate data this search engine comes from. |
| 42 // Set to zero if it was not prepopulated. | 42 // Set to zero if it was not prepopulated. |
| 43 optional int32 prepopulate_id = 11; | 43 optional int32 prepopulate_id = 11; |
| 44 // Whether to autogenerate a keyword for the search engine or not. | 44 // DEPRECATED: Whether to autogenerate a keyword for the search engine or not. |
| 45 // Do not use this field in the future. | |
|
Nicolas Zea
2012/05/08 00:51:03
Nit: Change to "do not write to this field" and me
Peter Kasting
2012/05/08 01:31:42
Done.
| |
| 45 optional bool autogenerate_keyword = 12; | 46 optional bool autogenerate_keyword = 12; |
| 46 // ID 13 reserved - previously used by |logo_id|, now deprecated. | 47 // ID 13 reserved - previously used by |logo_id|, now deprecated. |
| 47 // Obsolete field. This used to represent whether or not this search engine | 48 // Obsolete field. This used to represent whether or not this search engine |
| 48 // entry was created automatically by an administrator via group policy. This | 49 // entry was created automatically by an administrator via group policy. This |
| 49 // notion no longer exists amongst synced search engines as we do not want to | 50 // notion no longer exists amongst synced search engines as we do not want to |
| 50 // sync managed search engines. | 51 // sync managed search engines. |
| 51 // optional bool deprecated_created_by_policy = 14; | 52 // optional bool deprecated_created_by_policy = 14; |
| 52 // The parameterized URL that is used for Instant results. | 53 // The parameterized URL that is used for Instant results. |
| 53 optional string instant_url = 15; | 54 optional string instant_url = 15; |
| 54 // ID 16 reserved - previously used by |id|, now deprecated. | 55 // ID 16 reserved - previously used by |id|, now deprecated. |
| 55 // The last time this entry was modified by a user. A UTC timestamp with units | 56 // The last time this entry was modified by a user. A UTC timestamp with units |
| 56 // in microseconds. | 57 // in microseconds. |
| 57 optional int64 last_modified = 17; | 58 optional int64 last_modified = 17; |
| 58 // The primary identifier of this search engine entry for Sync. | 59 // The primary identifier of this search engine entry for Sync. |
| 59 optional string sync_guid = 18; | 60 optional string sync_guid = 18; |
| 60 } | 61 } |
| 61 | 62 |
| OLD | NEW |