OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #ifndef CHROME_COMMON_INSTANT_TYPES_H_ | 5 #ifndef CHROME_COMMON_SEARCH_INSTANT_TYPES_H_ |
6 #define CHROME_COMMON_INSTANT_TYPES_H_ | 6 #define CHROME_COMMON_SEARCH_INSTANT_TYPES_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 #include <utility> | 11 #include <utility> |
12 | 12 |
13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
14 #include "url/gurl.h" | 14 #include "url/gurl.h" |
15 | 15 |
16 // ID used by Instant code to refer to objects (e.g. Autocomplete results, Most | 16 // ID used by Instant code to refer to objects (e.g. Autocomplete results, Most |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 base::string16 input_encoding; | 183 base::string16 input_encoding; |
184 | 184 |
185 // The optional assisted query stats, aka AQS, used for logging purposes. | 185 // The optional assisted query stats, aka AQS, used for logging purposes. |
186 // This string contains impressions of all autocomplete matches shown | 186 // This string contains impressions of all autocomplete matches shown |
187 // at the query submission time. For privacy reasons, we require the | 187 // at the query submission time. For privacy reasons, we require the |
188 // search provider to support HTTPS protocol in order to receive the AQS | 188 // search provider to support HTTPS protocol in order to receive the AQS |
189 // param. | 189 // param. |
190 // For more details, see http://goto.google.com/binary-clients-logging. | 190 // For more details, see http://goto.google.com/binary-clients-logging. |
191 base::string16 assisted_query_stats; | 191 base::string16 assisted_query_stats; |
192 }; | 192 }; |
193 #endif // CHROME_COMMON_INSTANT_TYPES_H_ | 193 #endif // CHROME_COMMON_SEARCH_INSTANT_TYPES_H_ |
OLD | NEW |