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

Unified Diff: chrome/common/page_load_metrics/page_load_metrics_util.h

Issue 2904533002: Factor management of metrics updates into its own class. (Closed)
Patch Set: address comment Created 3 years, 7 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/page_load_metrics/page_load_metrics_util.h
diff --git a/chrome/common/page_load_metrics/page_load_metrics_util.h b/chrome/common/page_load_metrics/page_load_metrics_util.h
new file mode 100644
index 0000000000000000000000000000000000000000..4def3f8727fbb6c43c6aa8f364dc2c9f6ee241ef
--- /dev/null
+++ b/chrome/common/page_load_metrics/page_load_metrics_util.h
@@ -0,0 +1,17 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
Charlie Harrison 2017/05/24 21:02:52 It's kinda weird to have two page_load_metrics_uti
Bryan McQuade 2017/05/25 02:30:21 done
+// found in the LICENSE file.
+
+#ifndef CHROME_COMMON_PAGE_LOAD_METRICS_PAGE_LOAD_METRICS_UTIL_H_
+#define CHROME_COMMON_PAGE_LOAD_METRICS_PAGE_LOAD_METRICS_UTIL_H_
+
+namespace page_load_metrics {
+
+// Amount of time to delay dispatch of metrics. This allows us to batch and send
+// fewer cross-process updates, given that cross-process updates can be
+// expensive.
+const int kBufferTimerDelayMillis = 1000;
+
+} // namespace page_load_metrics
+
+#endif // CHROME_COMMON_PAGE_LOAD_METRICS_PAGE_LOAD_METRICS_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698