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

Unified Diff: mojo/services/tracing/public/cpp/switches.cc

Issue 1278673002: Add stats collection for telemetry startup.warm.blank_page test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 5 years, 4 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: mojo/services/tracing/public/cpp/switches.cc
diff --git a/mojo/services/tracing/public/cpp/switches.cc b/mojo/services/tracing/public/cpp/switches.cc
new file mode 100644
index 0000000000000000000000000000000000000000..cd1341424c6336d573f1ec7cc3a75641d63406a1
--- /dev/null
+++ b/mojo/services/tracing/public/cpp/switches.cc
@@ -0,0 +1,16 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "mojo/services/tracing/public/cpp/switches.h"
+
+namespace tracing {
+
+// Specifies if the |StatsCollectionController| needs to be bound in html pages.
+// This binding happens on per-frame basis and hence can potentially be a
+// performance bottleneck. One should only enable it when running a test that
+// needs to access the provided statistics.
+const char kEnableStatsCollectionBindings[] =
+ "enable-stats-collection-bindings";
+
+} // namespace tracing

Powered by Google App Engine
This is Rietveld 408576698