Chromium Code Reviews| Index: util/win/time.h |
| diff --git a/client/crash_report_database.cc b/util/win/time.h |
| similarity index 76% |
| copy from client/crash_report_database.cc |
| copy to util/win/time.h |
| index 0a090b5c2c39b7a85e59e1c595d19daf90ba3384..29d1075fc115638fcee93d18f52c65b49373ba50 100644 |
| --- a/client/crash_report_database.cc |
| +++ b/util/win/time.h |
| @@ -12,13 +12,15 @@ |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| -#include "client/crash_report_database.h" |
| +#ifndef CRASHPAD_UTIL_WIN_TIME_H_ |
| +#define CRASHPAD_UTIL_WIN_TIME_H_ |
| + |
| +#include <sys/time.h> |
| namespace crashpad { |
| -CrashReportDatabase::Report::Report() |
| - : uuid(), file_path(), id(), creation_time(0), uploaded(false), |
| - last_upload_attempt_time(0), upload_attempts(0) { |
| -} |
| +void GetTimeOfDay(timeval* tv); |
|
Mark Mentovai
2015/02/20 18:15:33
//! \brief to explain this just a little bit?
scottmg
2015/02/20 19:27:56
Done.
|
| } // namespace crashpad |
| + |
| +#endif // CRASHPAD_UTIL_WIN_TIME_H_ |