tree: 93863af5585e3928b0633b06f89a0b8a89e640bc [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. activity.cc
  11. activity.h
  12. activity_impl.h
  13. activity_impl_mac.cc
  14. activity_impl_win.cc
  15. branding.gni
  16. BUILD.gn
  17. configurator.cc
  18. configurator.h
  19. constants.cc
  20. constants.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. DIR_METADATA
  28. enum_traits.h
  29. enum_traits_unittest.cc
  30. external_constants.cc
  31. external_constants.h
  32. external_constants_impl.h
  33. external_constants_mac.mm
  34. external_constants_mac_unittest.mm
  35. external_constants_unittest.cc
  36. external_constants_unittest.h
  37. external_constants_win.cc
  38. external_constants_win_unittest.cc
  39. installer.cc
  40. installer.h
  41. installer_mac.cc
  42. installer_win.cc
  43. launchd_util.cc
  44. launchd_util.h
  45. lib_util.h
  46. lib_util_mac.mm
  47. lib_util_unittest.cc
  48. lib_util_win.cc
  49. OWNERS
  50. patcher.cc
  51. patcher.h
  52. persisted_data.cc
  53. persisted_data.h
  54. persisted_data_unittest.cc
  55. policy_manager.cc
  56. policy_manager.h
  57. policy_manager_unittest.cc
  58. policy_service.cc
  59. policy_service.h
  60. policy_service_unittest.cc
  61. prefs.cc
  62. prefs.h
  63. prefs_impl.h
  64. prefs_mac.mm
  65. prefs_unittest.cc
  66. prefs_win.cc
  67. README.md
  68. registration_data.cc
  69. registration_data.h
  70. run_all_unittests.cc
  71. run_updater_tests.py
  72. service_factory_mac.mm
  73. service_factory_win.cc
  74. service_scope.h
  75. service_scope_unittest.cc
  76. setup.h
  77. setup_mac.mm
  78. setup_win.cc
  79. splash_screen.h
  80. tag.cc
  81. tag.h
  82. tag_unittest.cc
  83. unittest_util.cc
  84. unittest_util.h
  85. unittest_util_unittest.cc
  86. unzipper.cc
  87. unzipper.h
  88. update_service.cc
  89. update_service.h
  90. update_service_impl.cc
  91. update_service_impl.h
  92. update_service_impl_inactive.cc
  93. update_service_impl_inactive.h
  94. update_service_internal.h
  95. update_service_internal_impl.cc
  96. update_service_internal_impl.h
  97. update_service_internal_impl_inactive.cc
  98. update_service_internal_impl_inactive.h
  99. update_service_unittest.cc
  100. updater.cc
  101. updater.h
  102. updater_branding.h.in
  103. updater_unittest.cc
  104. updater_version.h.in
  105. util.cc
  106. 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.