OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 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_BROWSER_CHROMEOS_LOGIN_REPORT_RESTARTING_FLAGS_H_ | |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_REPORT_RESTARTING_FLAGS_H_ | |
7 | |
8 #include <set> | |
9 #include <string> | |
10 | |
11 namespace chromeos { | |
12 | |
13 void ReportRestartingFlags( | |
Nikita (slow)
2014/06/19 17:08:07
nit: Rename to smth like ReportFlags / ReportCusto
Alexander Alekseev
2014/06/19 18:17:47
Done.
| |
14 const std::set<std::string>& command_line_difference); | |
15 | |
16 const char* const* GetChromeRestartHistogramSwitchesForTesting( | |
17 size_t* out_size); | |
18 | |
19 } // namespace chromeos | |
20 | |
21 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_REPORT_RESTARTING_FLAGS_H_ | |
OLD | NEW |