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

Unified Diff: src/platform/update_engine/delta_diff_generator.h

Issue 1718001: AU: Class to perform delta updates. (Closed)
Patch Set: fixes for review Created 10 years, 8 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: src/platform/update_engine/delta_diff_generator.h
diff --git a/src/platform/update_engine/delta_diff_generator.h b/src/platform/update_engine/delta_diff_generator.h
index 6e48519380d575852aa734d9f0fbd99749298cc3..3cf01a325d1ee4a3d5bf4d0719b240c9799ab745 100644
--- a/src/platform/update_engine/delta_diff_generator.h
+++ b/src/platform/update_engine/delta_diff_generator.h
@@ -111,6 +111,12 @@ class DeltaDiffGenerator {
DISALLOW_IMPLICIT_CONSTRUCTORS(DeltaDiffGenerator);
};
+namespace {
+const char* const kBsdiffPath = "/usr/bin/bsdiff";
Daniel Erat 2010/04/23 17:47:25 Same objection as in delta_performer.h here -- I d
adlr 2010/04/23 20:50:17 Sorry, I think I just threw this in while writing
+const char* const kBspatchPath = "/usr/bin/bspatch";
+const char* const kDeltaMagic = "CrAU";
+}
+
}; // namespace chromeos_update_engine
#endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_DELTA_DIFF_GENERATOR_H__

Powered by Google App Engine
This is Rietveld 408576698