| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_EXTENSIONS_API_RECORD_RECORD_API_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_RECORD_RECORD_API_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_RECORD_RECORD_API_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_RECORD_RECORD_API_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/extensions/extension_function.h" | 8 #include "chrome/browser/extensions/extension_function.h" |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 | 149 |
| 150 // These data are additional information added to the sub-browser | 150 // These data are additional information added to the sub-browser |
| 151 // commandline or used to repeatedly run the sub-browser. | 151 // commandline or used to repeatedly run the sub-browser. |
| 152 FilePath extension_path_; | 152 FilePath extension_path_; |
| 153 FilePath stats_file_path_; | 153 FilePath stats_file_path_; |
| 154 | 154 |
| 155 // This time datum marks the start and end of the sub-browser run. | 155 // This time datum marks the start and end of the sub-browser run. |
| 156 base::Time timer_; | 156 base::Time timer_; |
| 157 | 157 |
| 158 // These two data are additional information returned to caller. | 158 // These two data are additional information returned to caller. |
| 159 int run_time_ms_; | 159 double run_time_ms_; |
| 160 std::string stats_; | 160 std::string stats_; |
| 161 }; | 161 }; |
| 162 | 162 |
| 163 } // namespace extensions | 163 } // namespace extensions |
| 164 | 164 |
| 165 #endif // CHROME_BROWSER_EXTENSIONS_API_RECORD_RECORD_API_H_ | 165 #endif // CHROME_BROWSER_EXTENSIONS_API_RECORD_RECORD_API_H_ |
| OLD | NEW |