diff options
author | ttuttle@chromium.org <ttuttle@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-19 20:38:58 +0000 |
---|---|---|
committer | ttuttle@chromium.org <ttuttle@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-19 20:38:58 +0000 |
commit | bbf0d1bc6a262f16bb881e60ee3f80d7b9416586 (patch) | |
tree | 171c03b30ad9586672b9a046cc0f96ea0b46cb6d /components/domain_reliability/context.cc | |
parent | f1b171b812baa8d798274afb46516ef437bb6d46 (diff) | |
download | chromium_src-bbf0d1bc6a262f16bb881e60ee3f80d7b9416586.zip chromium_src-bbf0d1bc6a262f16bb881e60ee3f80d7b9416586.tar.gz chromium_src-bbf0d1bc6a262f16bb881e60ee3f80d7b9416586.tar.bz2 |
Domain Reliability: Include config_version in uploads
Echo the config's version in uploads based on the config, so the server
can judge what frequency/type of reports to expect.
BUG=356791
Review URL: https://codereview.chromium.org/290473005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271466 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/domain_reliability/context.cc')
-rw-r--r-- | components/domain_reliability/context.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/domain_reliability/context.cc b/components/domain_reliability/context.cc index 7acc8e6..aae45fc 100644 --- a/components/domain_reliability/context.cc +++ b/components/domain_reliability/context.cc @@ -272,6 +272,7 @@ scoped_ptr<const Value> DomainReliabilityContext::CreateReport( } DictionaryValue* report_value = new DictionaryValue(); + report_value->SetString("config_version", config().version); report_value->SetString("reporter", upload_reporter_string_); report_value->Set("resource_reports", resources_value); |