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

Unified Diff: chrome/browser/chrome_browser_field_trials.cc

Issue 1891913002: Support saving browser metrics to disk and reading them during next run. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed review comments by Ilya Created 4 years, 8 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/browser/chrome_browser_field_trials.cc
diff --git a/chrome/browser/chrome_browser_field_trials.cc b/chrome/browser/chrome_browser_field_trials.cc
index 648167695f6b70b9ca8b5c986e7c773d7d08c2ca..38ac04cc8d970049060509cdb3a2c793d398e0df 100644
--- a/chrome/browser/chrome_browser_field_trials.cc
+++ b/chrome/browser/chrome_browser_field_trials.cc
@@ -8,12 +8,15 @@
#include "base/command_line.h"
#include "base/feature_list.h"
+#include "base/files/file_path.h"
#include "base/metrics/field_trial.h"
#include "base/metrics/histogram_base.h"
#include "base/metrics/persistent_histogram_allocator.h"
+#include "base/path_service.h"
#include "base/strings/string_util.h"
#include "base/time/time.h"
#include "build/build_config.h"
+#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "components/metrics/metrics_pref_names.h"
@@ -26,19 +29,14 @@
namespace {
// Check for feature enabling the use of persistent histogram storage and
-// create an appropriate allocator for such if so.
+// enable the global allocator if so.
void InstantiatePersistentHistograms() {
if (base::FeatureList::IsEnabled(base::kPersistentHistogramsFeature)) {
- const char kAllocatorName[] = "BrowserMetrics";
- // Create persistent/shared memory and allow histograms to be stored in it.
- // Memory that is not actualy used won't be physically mapped by the system.
- // BrowserMetrics usage peaked around 95% of 2MiB as of 2016-02-20.
- base::GlobalHistogramAllocator::CreateWithLocalMemory(
- 3 << 20, // 3 MiB
- 0x935DDD43, // SHA1(BrowserMetrics)
- kAllocatorName);
- base::GlobalHistogramAllocator::Get()->CreateTrackingHistograms(
- kAllocatorName);
+ base::GlobalHistogramAllocator::Enable();
Ilya Sherman 2016/04/25 19:48:40 It seems odd to have this as a static method. Why
bcwhite 2016/04/25 20:37:17 I considered both. The general differentiation ha
Ilya Sherman 2016/04/25 21:12:11 I don't really follow, sorry. In any case, I don'
bcwhite 2016/04/26 13:32:30 My style matches yours but I've been previously as
Ilya Sherman 2016/04/26 20:01:24 Okay, I agree that if the base PHA class doesn't n
+ base::GlobalHistogramAllocator* allocator =
+ base::GlobalHistogramAllocator::Get();
+ DCHECK(allocator); // Should have been created during startup.
+ allocator->CreateTrackingHistograms(allocator->Name());
}
}

Powered by Google App Engine
This is Rietveld 408576698