asvitkine | 9a27983 | 2015-12-18 02:35:50 | [diff] [blame] | 1 | // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef COMPONENTS_VARIATIONS_NET_VARIATIONS_HTTP_HEADERS_H_ |
| 6 | #define COMPONENTS_VARIATIONS_NET_VARIATIONS_HTTP_HEADERS_H_ |
| 7 | |
| 8 | #include <set> |
| 9 | #include <string> |
| 10 | |
| 11 | namespace net { |
| 12 | class HttpRequestHeaders; |
| 13 | } |
| 14 | |
| 15 | class GURL; |
| 16 | |
| 17 | namespace variations { |
| 18 | |
| 19 | // Adds Chrome experiment and metrics state as custom headers to |headers|. |
yutak | 3305f49d | 2016-12-13 10:32:31 | [diff] [blame^] | 20 | // The content of the headers will depend on |incognito|, |uma_enabled| and |
| 21 | // |is_signed_in| parameters. It is fine to pass false for |is_signed_in| if the |
| 22 | // state is not known to the caller. This will prevent addition of ids of type |
| 23 | // GOOGLE_WEB_PROPERTIES_SIGNED_IN, which is not the case for any ids that come |
| 24 | // from the variations server. These headers are never transmitted to non-Google |
| 25 | // web sites, which is checked based on the destination |url|. |
asvitkine | 9a27983 | 2015-12-18 02:35:50 | [diff] [blame] | 26 | void AppendVariationHeaders(const GURL& url, |
| 27 | bool incognito, |
| 28 | bool uma_enabled, |
yutak | 3305f49d | 2016-12-13 10:32:31 | [diff] [blame^] | 29 | bool is_signed_in, |
asvitkine | 9a27983 | 2015-12-18 02:35:50 | [diff] [blame] | 30 | net::HttpRequestHeaders* headers); |
| 31 | |
| 32 | // Returns the HTTP header names which are added by AppendVariationHeaders(). |
| 33 | std::set<std::string> GetVariationHeaderNames(); |
| 34 | |
| 35 | namespace internal { |
| 36 | |
| 37 | // Checks whether variation headers should be appended to requests to the |
| 38 | // specified |url|. Returns true for google.<TLD> and youtube.<TLD> URLs. |
| 39 | bool ShouldAppendVariationHeaders(const GURL& url); |
| 40 | |
| 41 | } // namespace internal |
| 42 | |
| 43 | } // namespace variations |
| 44 | |
| 45 | #endif // COMPONENTS_VARIATIONS_NET_VARIATIONS_HTTP_HEADERS_H_ |