| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file contains the code to apply a Courgette patch. | 5 // This file contains the code to apply a Courgette patch. |
| 6 | 6 |
| 7 #include "courgette/ensemble.h" | 7 #include "courgette/ensemble.h" |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 | 12 |
| 13 #include "courgette/crc.h" | 13 #include "courgette/crc.h" |
| 14 #include "courgette/image_info.h" | |
| 15 #include "courgette/region.h" | 14 #include "courgette/region.h" |
| 16 #include "courgette/streams.h" | 15 #include "courgette/streams.h" |
| 17 #include "courgette/simple_delta.h" | 16 #include "courgette/simple_delta.h" |
| 18 #include "courgette/win32_x86_patcher.h" | 17 #include "courgette/win32_x86_patcher.h" |
| 19 | 18 |
| 20 namespace courgette { | 19 namespace courgette { |
| 21 | 20 |
| 22 // EnsemblePatchApplication is all the logic and data required to apply the | 21 // EnsemblePatchApplication is all the logic and data required to apply the |
| 23 // multi-stage patch. | 22 // multi-stage patch. |
| 24 class EnsemblePatchApplication { | 23 class EnsemblePatchApplication { |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 static_cast<int>(new_sink_stream.Length())); | 413 static_cast<int>(new_sink_stream.Length())); |
| 415 if (written == -1) | 414 if (written == -1) |
| 416 return C_WRITE_OPEN_ERROR; | 415 return C_WRITE_OPEN_ERROR; |
| 417 if (static_cast<size_t>(written) != new_sink_stream.Length()) | 416 if (static_cast<size_t>(written) != new_sink_stream.Length()) |
| 418 return C_WRITE_ERROR; | 417 return C_WRITE_ERROR; |
| 419 | 418 |
| 420 return C_OK; | 419 return C_OK; |
| 421 } | 420 } |
| 422 | 421 |
| 423 } // namespace | 422 } // namespace |
| OLD | NEW |