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

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: v8-version 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
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

Powered by Google App Engine
This is Rietveld 408576698