tree: 1b507ac005d095b36037ed28bd62f122ffc73ff8 [path history] [tgz]
  1. app/
  2. mac/
  3. server/
  4. test/
  5. tools/
  6. win/
  7. action_handler.h
  8. branding.gni
  9. BUILD.gn
  10. configurator.cc
  11. configurator.h
  12. constants.cc
  13. constants.h
  14. crash_client.cc
  15. crash_client.h
  16. crash_reporter.cc
  17. crash_reporter.h
  18. DEPS
  19. installer.cc
  20. installer.h
  21. installer_mac.cc
  22. installer_win.cc
  23. lib_util.h
  24. lib_util_mac.mm
  25. lib_util_unittest.cc
  26. lib_util_win.cc
  27. OWNERS
  28. patcher.cc
  29. patcher.h
  30. persisted_data.cc
  31. persisted_data.h
  32. persisted_data_unittest.cc
  33. policy_manager.cc
  34. policy_manager.h
  35. policy_manager_unittest.cc
  36. prefs.cc
  37. prefs.h
  38. prefs_unittest.cc
  39. README.md
  40. registration_data.cc
  41. registration_data.h
  42. run_all_unittests.cc
  43. tag.cc
  44. tag.h
  45. tag_unittest.cc
  46. unittest_util.cc
  47. unittest_util.h
  48. unzipper.cc
  49. unzipper.h
  50. update_apps.h
  51. update_apps_mac.mm
  52. update_apps_win.cc
  53. update_service.h
  54. update_service_in_process.cc
  55. update_service_in_process.h
  56. updater.cc
  57. updater.h
  58. updater_unittest.cc
  59. updater_version.h.in
  60. util.cc
  61. util.h
chrome/updater/README.md

An updater for desktop client software using Chromium code and tools.

The updater will be built from a common, platform neutral code base, as part of the Chrome build. The updater is going to be a drop-in replacement for Google Update/Omaha/Keystone and could be customized by 3rd party embedders to for updating non-Google client software, such as Edge.

The desktop platforms include Windows, macOS, Linux.

There are many reasons to start a new code base for this:

  • Reducing the development cost and the code duplication among platforms.
  • Implementing update algorithms consistently and correctly: checking for updates, applying updates, gathering metrics, and load shedding.
  • Use world-class developer tool chains for build, security, and stability.

The existing Omaha/Keystone design, implementation, and production issues apply to this project as well.