tree: 93f3020140a280f80eb8f92297ec101bce7e0663 [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. OWNERS
  24. patcher.cc
  25. patcher.h
  26. persisted_data.cc
  27. persisted_data.h
  28. persisted_data_unittest.cc
  29. prefs.cc
  30. prefs.h
  31. README.md
  32. registration_data.cc
  33. registration_data.h
  34. run_all_unittests.cc
  35. unzipper.cc
  36. unzipper.h
  37. update_apps.h
  38. update_apps_mac.mm
  39. update_apps_win.cc
  40. update_service.h
  41. update_service_in_process.cc
  42. update_service_in_process.h
  43. updater.cc
  44. updater.h
  45. updater_unittest.cc
  46. updater_version.h.in
  47. util.cc
  48. 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.