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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 // The following post_params are comma-separated lists used to specify the | 72 // The following post_params are comma-separated lists used to specify the |
73 // post parameters for the corresponding search URL. | 73 // post parameters for the corresponding search URL. |
74 optional string search_url_post_params = 22; | 74 optional string search_url_post_params = 22; |
75 optional string suggestions_url_post_params = 23; | 75 optional string suggestions_url_post_params = 23; |
76 optional string instant_url_post_params = 24; | 76 optional string instant_url_post_params = 24; |
77 optional string image_url_post_params = 25; | 77 optional string image_url_post_params = 25; |
78 | 78 |
79 // The parameterized URL for a search provider specified new tab page. | 79 // The parameterized URL for a search provider specified new tab page. |
80 optional string new_tab_url = 26; | 80 optional string new_tab_url = 26; |
81 } | 81 } |
82 | |
OLD | NEW |