OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
grt (UTC plus 2)
2016/02/08 18:09:19
nit: no (c) in copyright notices for new files (ht
bcwhite
2016/02/09 21:08:46
Done.
| |
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 // Create a persistent space for any histograms that can be reported later | |
grt (UTC plus 2)
2016/02/08 18:09:19
nit: "Creates..." as per https://google.github.io/
bcwhite
2016/02/09 21:08:46
Done.
| |
15 // by the browser process. | |
16 void BeginPersistentHistogramStorage(const char* name); | |
17 | |
18 // Save all the persistent histograms to a single file on disk for reading | |
grt (UTC plus 2)
2016/02/08 18:09:19
nit: "Saves..."
bcwhite
2016/02/09 21:08:46
Done.
| |
19 // by the browser so it can be reported. | |
20 void EndPersistentHistogramStorage(const base::FilePath& target_dir); | |
21 | |
22 } // namespace installer | |
23 | |
24 #endif // CHROME_INSTALLER_SETUP_INSTALLER_METRICS_H_ | |
25 | |
OLD | NEW |