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

Unified Diff: chrome/common/child_process_logging_posix.cc

Issue 9432033: Add experiments info to crash dumps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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: chrome/common/child_process_logging_posix.cc
===================================================================
--- chrome/common/child_process_logging_posix.cc (revision 125856)
+++ chrome/common/child_process_logging_posix.cc (working copy)
@@ -126,6 +126,15 @@
g_switches[kMaxSwitchesSize - 1] = '\0';
}
+void InitExperimentList() {
+ // TODO(mad): Implement this.
+}
+
+void AddFieldTrialGroup(const std::string& field_trial_name,
+ const std::string& group_name) {
+ // TODO(mad): Implement this.
+}
+
void SetChannel(const std::string& channel) {
strncpy(g_channel, channel.c_str(), kChannelSize - 1);
g_channel[kChannelSize - 1] = '\0';

Powered by Google App Engine
This is Rietveld 408576698