| Index: chromecast/crash/linux/dump_info.h
|
| diff --git a/chromecast/crash/linux/dump_info.h b/chromecast/crash/linux/dump_info.h
|
| index f1572cd3729d3028cfa53b5524d30fa8a3a0dcc1..bd3215921d40060963d2f648fceaa50010924480 100644
|
| --- a/chromecast/crash/linux/dump_info.h
|
| +++ b/chromecast/crash/linux/dump_info.h
|
| @@ -10,6 +10,7 @@
|
| #include <string>
|
|
|
| #include "base/macros.h"
|
| +#include "base/time/time.h"
|
| #include "chromecast/crash/linux/minidump_params.h"
|
|
|
| namespace base {
|
| @@ -34,7 +35,7 @@ class DumpInfo {
|
| // -params: a structure containing other useful crash information
|
| DumpInfo(const std::string& crashed_process_dump,
|
| const std::string& crashed_process_logfile,
|
| - const time_t& dump_time,
|
| + const base::Time& dump_time,
|
| const MinidumpParams& params);
|
|
|
| ~DumpInfo();
|
| @@ -43,7 +44,7 @@ class DumpInfo {
|
| return crashed_process_dump_;
|
| }
|
| const std::string& logfile() const { return logfile_; }
|
| - const time_t& dump_time() const { return dump_time_; }
|
| + const base::Time& dump_time() const { return dump_time_; }
|
|
|
| // Return a deep copy of the entry's JSON representation.
|
| // The format is:
|
| @@ -73,7 +74,7 @@ class DumpInfo {
|
|
|
| std::string crashed_process_dump_;
|
| std::string logfile_;
|
| - time_t dump_time_;
|
| + base::Time dump_time_;
|
| MinidumpParams params_;
|
| bool valid_;
|
|
|
|
|