summaryrefslogtreecommitdiff
path: root/ninja/src/build_log.h
diff options
context:
space:
mode:
authorZeno Albisser <zeno.albisser@digia.com>2013-11-21 14:09:57 +0100
committerAndras Becsi <andras.becsi@digia.com>2013-11-29 15:14:36 +0100
commiteb32ba6f51d0c21d58cd7d89785285ff8fa64624 (patch)
tree2c7c940e1dbee81b89d935626110816b494aa32c /ninja/src/build_log.h
parent9427c1a0222ebd67efef1a2c7990a0fa5c9aac84 (diff)
downloadqtwebengine-chromium-eb32ba6f51d0c21d58cd7d89785285ff8fa64624.tar.gz
Update chromium to branch 1599.
Change-Id: I04e775a946a208bb4500d3b722bcb05c82b9d7cb Reviewed-by: Andras Becsi <andras.becsi@digia.com>
Diffstat (limited to 'ninja/src/build_log.h')
-rw-r--r--ninja/src/build_log.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ninja/src/build_log.h b/ninja/src/build_log.h
index 6eae89f87ee..eeac5b3b0b4 100644
--- a/ninja/src/build_log.h
+++ b/ninja/src/build_log.h
@@ -37,7 +37,7 @@ struct BuildLog {
~BuildLog();
bool OpenForWrite(const string& path, string* err);
- void RecordCommand(Edge* edge, int start_time, int end_time,
+ bool RecordCommand(Edge* edge, int start_time, int end_time,
TimeStamp restat_mtime = 0);
void Close();
@@ -69,7 +69,7 @@ struct BuildLog {
LogEntry* LookupByOutput(const string& path);
/// Serialize an entry into a log file.
- void WriteEntry(FILE* f, const LogEntry& entry);
+ bool WriteEntry(FILE* f, const LogEntry& entry);
/// Rewrite the known log entries, throwing away old data.
bool Recompact(const string& path, string* err);