Chromium Code Reviews| Index: unclean_shutdown_collector.h |
| diff --git a/unclean_shutdown_collector.h b/unclean_shutdown_collector.h |
| index e7d8cef95948793b77e70bed873812a36a558ba0..bc65cfd3e2f0b3dd37151607397a054c767e0dc0 100644 |
| --- a/unclean_shutdown_collector.h |
| +++ b/unclean_shutdown_collector.h |
| @@ -8,6 +8,7 @@ |
| #include <string> |
| #include "base/file_path.h" |
| +#include "base/time.h" |
| #include "crash-reporter/crash_collector.h" |
| #include "gtest/gtest_prod.h" // for FRIEND_TEST |
| @@ -33,6 +34,12 @@ class UncleanShutdownCollector : public CrashCollector { |
| bool DeleteUncleanShutdownFile(); |
| + // Check and log modification time on file. |
| + bool ReadModificationTime(const FilePath &file_path, base::Time *mod_time); |
|
tfarina
2010/11/19 15:35:43
the & should be with the type.
kmixter1
2010/11/19 20:02:02
Please don't fix. This project does not yet follo
|
| + |
| + // Analyze the powerd tracing files. |
| + bool CheckPowerdFiles(); |
| + |
| const char *unclean_shutdown_file_; |
|
tfarina
2010/11/19 15:35:43
Since you are here, please fix this too.
|
| }; |