tree: 64185d72c8d7f8cb0fd9ad17ed9ea46fa9640431 [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. prefs.cc
  34. prefs.h
  35. prefs_unittest.cc
  36. README.md
  37. registration_data.cc
  38. registration_data.h
  39. run_all_unittests.cc
  40. tag.cc
  41. tag.h
  42. tag_unittest.cc
  43. unittest_util.cc
  44. unittest_util.h
  45. unzipper.cc
  46. unzipper.h
  47. update_apps.h
  48. update_apps_mac.mm
  49. update_apps_win.cc
  50. update_service.h
  51. update_service_in_process.cc
  52. update_service_in_process.h
  53. updater.cc
  54. updater.h
  55. updater_unittest.cc
  56. updater_version.h.in
  57. util.cc
  58. 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.