| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_DIAGNOSTICS_DIAGNOSTICS_TEST_H_ | 5 #ifndef CHROME_BROWSER_DIAGNOSTICS_DIAGNOSTICS_TEST_H_ |
| 6 #define CHROME_BROWSER_DIAGNOSTICS_DIAGNOSTICS_TEST_H_ | 6 #define CHROME_BROWSER_DIAGNOSTICS_DIAGNOSTICS_TEST_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 9 #include "chrome/browser/diagnostics/diagnostics_metrics.h" | 11 #include "chrome/browser/diagnostics/diagnostics_metrics.h" |
| 10 #include "chrome/browser/diagnostics/diagnostics_model.h" | 12 #include "chrome/browser/diagnostics/diagnostics_model.h" |
| 11 | 13 |
| 12 namespace base { | 14 namespace base { |
| 13 class FilePath; | 15 class FilePath; |
| 14 } | 16 } |
| 15 | 17 |
| 16 namespace diagnostics { | 18 namespace diagnostics { |
| 17 | 19 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 const DiagnosticsTestId id_; | 84 const DiagnosticsTestId id_; |
| 83 std::string additional_info_; | 85 std::string additional_info_; |
| 84 int outcome_code_; | 86 int outcome_code_; |
| 85 DiagnosticsModel::TestResult result_; | 87 DiagnosticsModel::TestResult result_; |
| 86 base::Time start_time_; | 88 base::Time start_time_; |
| 87 base::Time end_time_; | 89 base::Time end_time_; |
| 88 }; | 90 }; |
| 89 | 91 |
| 90 } // namespace diagnostics | 92 } // namespace diagnostics |
| 91 #endif // CHROME_BROWSER_DIAGNOSTICS_DIAGNOSTICS_TEST_H_ | 93 #endif // CHROME_BROWSER_DIAGNOSTICS_DIAGNOSTICS_TEST_H_ |
| OLD | NEW |