Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1333)

Unified Diff: content/browser/tracing/tracing_controller_impl.cc

Issue 2072383002: Trace revision and v8 version for IterationInfo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/chrome_content_client.cc ('k') | content/public/common/content_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..9c1bfbe887e0b91c87bae3e75477b9c444fc3f2e 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,8 @@ 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());
+ metadata_dict->SetString("revision", GetContentClient()->GetLastChange());
nednguyen 2016/06/17 20:38:12 Can we also have v8 revision? :)
metadata_dict->SetString("user-agent", GetContentClient()->GetUserAgent());
// OS
« no previous file with comments | « chrome/common/chrome_content_client.cc ('k') | content/public/common/content_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698