tree: d4f976ffdadfebd64091508369cd2b2b43d08bba [path history] [tgz]
  1. app/
  2. device_management/
  3. docs/
  4. mac/
  5. protos/
  6. test/
  7. tools/
  8. win/
  9. action_handler.h
  10. branding.gni
  11. BUILD.gn
  12. configurator.cc
  13. configurator.h
  14. constants.cc
  15. constants.h
  16. control_service.h
  17. control_service_impl.cc
  18. control_service_impl.h
  19. control_service_impl_inactive.cc
  20. control_service_impl_inactive.h
  21. crash_client.cc
  22. crash_client.h
  23. crash_reporter.cc
  24. crash_reporter.h
  25. crx_downloader_factory.h
  26. DEPS
  27. external_constants.cc
  28. external_constants.h
  29. external_constants_impl.h
  30. external_constants_mac.mm
  31. external_constants_mac_unittest.mm
  32. external_constants_unittest.cc
  33. external_constants_unittest.h
  34. external_constants_win.cc
  35. external_constants_win_unittest.cc
  36. installer.cc
  37. installer.h
  38. installer_mac.cc
  39. installer_win.cc
  40. launchd_util.cc
  41. launchd_util.h
  42. lib_util.h
  43. lib_util_mac.mm
  44. lib_util_unittest.cc
  45. lib_util_win.cc
  46. OWNERS
  47. patcher.cc
  48. patcher.h
  49. persisted_data.cc
  50. persisted_data.h
  51. persisted_data_unittest.cc
  52. policy_manager.cc
  53. policy_manager.h
  54. policy_manager_unittest.cc
  55. policy_service.cc
  56. policy_service.h
  57. policy_service_unittest.cc
  58. prefs.cc
  59. prefs.h
  60. prefs_impl.h
  61. prefs_mac.mm
  62. prefs_unittest.cc
  63. prefs_win.cc
  64. README.md
  65. registration_data.cc
  66. registration_data.h
  67. run_all_unittests.cc
  68. run_updater_tests.py
  69. service_factory_mac.mm
  70. service_factory_win.cc
  71. service_scope.h
  72. service_scope_unittest.cc
  73. setup.h
  74. setup_mac.mm
  75. setup_win.cc
  76. splash_screen.h
  77. tag.cc
  78. tag.h
  79. tag_unittest.cc
  80. unittest_util.cc
  81. unittest_util.h
  82. unittest_util_unittest.cc
  83. unzipper.cc
  84. unzipper.h
  85. update_service.cc
  86. update_service.h
  87. update_service_impl.cc
  88. update_service_impl.h
  89. update_service_impl_inactive.cc
  90. update_service_impl_inactive.h
  91. updater.cc
  92. updater.h
  93. updater_unittest.cc
  94. updater_version.h.in
  95. util.cc
  96. util.h
  97. util_unittest.cc
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.