Chromium Code Reviews| Index: components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.h |
| diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.h b/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.h |
| index 992b8b66e5e5d04435c02800d18ec686866f2c43..4715b55d3792b5a73e55e35e794f581958f0772d 100644 |
| --- a/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.h |
| +++ b/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler.h |
| @@ -40,7 +40,8 @@ class DataReductionProxyAuthRequestHandler { |
| DataReductionProxyAuthRequestHandler( |
| const std::string& client, |
| - const std::string& version, |
| + const std::string& build_number, |
|
bengr
2014/09/03 22:28:39
Why can't this just take a version and do the spli
|
| + const std::string& patch_number, |
| DataReductionProxyParams* params, |
| scoped_refptr<base::SingleThreadTaskRunner> network_task_runner); |
| @@ -102,7 +103,8 @@ class DataReductionProxyAuthRequestHandler { |
| // Name of the client and version of the data reduction proxy protocol to use. |
| // Both live on the IO thread. |
| std::string client_; |
| - std::string version_; |
| + std::string build_number_; |
| + std::string patch_number_; |
| // The last time the session was updated. Used to ensure that a session is |
| // never used for more than twenty-four hours. |