Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3180)

Unified Diff: courgette/third_party/bsdiff/bsdiff.h

Issue 1961963003: Move //courgette/third_party to subfolder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed compilation Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: courgette/third_party/bsdiff/bsdiff.h
diff --git a/courgette/third_party/bsdiff.h b/courgette/third_party/bsdiff/bsdiff.h
similarity index 93%
rename from courgette/third_party/bsdiff.h
rename to courgette/third_party/bsdiff/bsdiff.h
index 1a7e025de883505f47f78587f43b810b60229f5b..fe50e21a71e32d1d27b62d8c6417b76869542706 100644
--- a/courgette/third_party/bsdiff.h
+++ b/courgette/third_party/bsdiff/bsdiff.h
@@ -79,10 +79,10 @@ BSDiffStatus ApplyBinaryPatch(const base::FilePath& old_stream,
// The patch stream starts with a MBSPatchHeader.
typedef struct MBSPatchHeader_ {
- char tag[8]; // Contains MBS_PATCH_HEADER_TAG
- uint32_t slen; // Length of the file to be patched.
- uint32_t scrc32; // CRC32 of the file to be patched.
- uint32_t dlen; // Length of the result file.
+ char tag[8]; // Contains MBS_PATCH_HEADER_TAG
huangs 2016/05/10 18:17:02 Please also add '.' at end.
altimin 2016/05/11 17:48:47 Done.
+ uint32_t slen; // Length of the file to be patched.
+ uint32_t scrc32; // CRC32 of the file to be patched.
+ uint32_t dlen; // Length of the result file.
} MBSPatchHeader;
// This is the value for the tag field. Must match length exactly, not counting

Powered by Google App Engine
This is Rietveld 408576698