Index: chrome/browser/chromeos/login/report_restarting_flags.h |
diff --git a/chrome/browser/chromeos/login/report_restarting_flags.h b/chrome/browser/chromeos/login/report_restarting_flags.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..32a28624cfebd10ac9fe861d6ea38e0ee18bedc4 |
--- /dev/null |
+++ b/chrome/browser/chromeos/login/report_restarting_flags.h |
@@ -0,0 +1,21 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_REPORT_RESTARTING_FLAGS_H_ |
+#define CHROME_BROWSER_CHROMEOS_LOGIN_REPORT_RESTARTING_FLAGS_H_ |
+ |
+#include <set> |
+#include <string> |
+ |
+namespace chromeos { |
+ |
+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.
|
+ const std::set<std::string>& command_line_difference); |
+ |
+const char* const* GetChromeRestartHistogramSwitchesForTesting( |
+ size_t* out_size); |
+ |
+} // namespace chromeos |
+ |
+#endif // CHROME_BROWSER_CHROMEOS_LOGIN_REPORT_RESTARTING_FLAGS_H_ |