Chromium Code Reviews| Index: src/snapshot-source-sink.h |
| diff --git a/src/snapshot-source-sink.h b/src/snapshot-source-sink.h |
| index 68901a13190135a9cd457e968ec88f96285058e8..398276fe5fda31f0c81d46d34a4fd1f60982f42b 100644 |
| --- a/src/snapshot-source-sink.h |
| +++ b/src/snapshot-source-sink.h |
| @@ -24,7 +24,7 @@ class SnapshotByteSource FINAL { |
| bool HasMore() { return position_ < length_; } |
| - int Get() { |
| + byte Get() { |
| DCHECK(position_ < length_); |
| return data_[position_++]; |
| } |