| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 16 matching lines...) Expand all Loading... |
| 27 optional int64 date_created = 7; | 27 optional int64 date_created = 7; |
| 28 optional string input_encodings = 8; | 28 optional string input_encodings = 8; |
| 29 optional bool show_in_default_list = 9; | 29 optional bool show_in_default_list = 9; |
| 30 optional string suggestions_url = 10; | 30 optional string suggestions_url = 10; |
| 31 optional int32 prepopulate_id = 11; | 31 optional int32 prepopulate_id = 11; |
| 32 optional bool autogenerate_keyword = 12; | 32 optional bool autogenerate_keyword = 12; |
| 33 optional int32 logo_id = 13; | 33 optional int32 logo_id = 13; |
| 34 optional bool created_by_policy = 14; | 34 optional bool created_by_policy = 14; |
| 35 optional string instant_url = 15; | 35 optional string instant_url = 15; |
| 36 optional int64 id = 16; | 36 optional int64 id = 16; |
| 37 optional int64 last_modified = 17; |
| 37 } | 38 } |
| 38 | 39 |
| 39 extend EntitySpecifics { | 40 extend EntitySpecifics { |
| 40 optional SearchEngineSpecifics search_engine = 88610; | 41 optional SearchEngineSpecifics search_engine = 88610; |
| 41 } | 42 } |
| OLD | NEW |