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

Side by Side Diff: chrome/installer/setup/installer_metrics.h

Issue 1537743006: Persist setup metrics and have Chrome report them during UMA upload. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shared-histograms
Patch Set: addressed final review comments by Alexei Created 4 years, 10 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 unified diff | Download patch
« no previous file with comments | « chrome/installer/setup/BUILD.gn ('k') | chrome/installer/setup/installer_metrics.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_INSTALLER_SETUP_INSTALLER_METRICS_H_
6 #define CHROME_INSTALLER_SETUP_INSTALLER_METRICS_H_
7
8 namespace base {
9 class FilePath;
10 } // namespace base
11
12 namespace installer {
13
14 // Creates a persistent space for any histograms that can be reported later
15 // by the browser process. It should be called as early as possible in the
16 // process lifetime and never called again.
17 void BeginPersistentHistogramStorage();
18
19 // Saves all the persistent histograms to a single file on disk for reading
20 // by the browser so it can be reported. It is generally called once during
21 // process exit. Multiple calls to this are possible if "snapshots" are
22 // desired; they are cumulative in what is saved, not just what has changed
23 // since the previous call.
24 void EndPersistentHistogramStorage(const base::FilePath& target_dir);
25
26 } // namespace installer
27
28 #endif // CHROME_INSTALLER_SETUP_INSTALLER_METRICS_H_
29
OLDNEW
« no previous file with comments | « chrome/installer/setup/BUILD.gn ('k') | chrome/installer/setup/installer_metrics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698