Chromium Code Reviews| Index: content/browser/tracing/tracing_controller_impl.cc |
| diff --git a/content/browser/tracing/tracing_controller_impl.cc b/content/browser/tracing/tracing_controller_impl.cc |
| index 8380c45c44cd2924301ebd3b7e34f803daf23480..ca8c0798ce67dd75a8610fbf3ee544467fad74ab 100644 |
| --- a/content/browser/tracing/tracing_controller_impl.cc |
| +++ b/content/browser/tracing/tracing_controller_impl.cc |
| @@ -28,6 +28,7 @@ |
| #include "content/public/common/child_process_host.h" |
| #include "content/public/common/content_client.h" |
| #include "content/public/common/content_switches.h" |
| +#include "content/public/common/user_agent.h" |
| #include "gpu/config/gpu_info.h" |
| #include "net/base/network_change_notifier.h" |
| @@ -114,6 +115,9 @@ std::unique_ptr<base::DictionaryValue> GenerateTracingMetadataDict() { |
| metadata_dict->SetString("network-type", GetNetworkTypeString()); |
| metadata_dict->SetString("product-version", GetContentClient()->GetProduct()); |
| + metadata_dict->SetString("blink-version", content::GetWebKitVersion()); |
|
Primiano Tucci (use gerrit)
2016/06/21 06:34:09
what do we need this for now that blink lives in t
benjhayden
2016/06/21 23:30:36
Done.
|
| + metadata_dict->SetString("v8-version", GetContentClient()->GetV8Version()); |
| + metadata_dict->SetString("revision", GetContentClient()->GetLastChange()); |
| metadata_dict->SetString("user-agent", GetContentClient()->GetUserAgent()); |
| // OS |