tree: ac1b3256c06b4151086e4b304b1d0849504fb964 [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. check_for_updates_task.cc
  18. check_for_updates_task.h
  19. configurator.cc
  20. configurator.h
  21. constants.cc
  22. constants.h
  23. crash_client.cc
  24. crash_client.h
  25. crash_reporter.cc
  26. crash_reporter.h
  27. crx_downloader_factory.h
  28. DEPS
  29. DIR_METADATA
  30. enum_traits.h
  31. enum_traits_unittest.cc
  32. external_constants.cc
  33. external_constants.h
  34. external_constants_builder.cc
  35. external_constants_builder.h
  36. external_constants_builder_unittest.cc
  37. external_constants_override.cc
  38. external_constants_override.h
  39. external_constants_override_unittest.cc
  40. installer.cc
  41. installer.h
  42. installer_mac.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. persisted_data.cc
  51. persisted_data.h
  52. persisted_data_unittest.cc
  53. policy_manager.cc
  54. policy_manager.h
  55. policy_manager_unittest.cc
  56. policy_service.cc
  57. policy_service.h
  58. policy_service_unittest.cc
  59. prefs.cc
  60. prefs.h
  61. prefs_impl.h
  62. prefs_mac.mm
  63. prefs_unittest.cc
  64. prefs_win.cc
  65. README.md
  66. registration_data.cc
  67. registration_data.h
  68. run_all_unittests.cc
  69. run_updater_tests.py
  70. service_factory_mac.mm
  71. service_factory_win.cc
  72. setup.h
  73. setup_mac.mm
  74. setup_win.cc
  75. splash_screen.h
  76. tag.cc
  77. tag.h
  78. tag_unittest.cc
  79. unittest_util.cc
  80. unittest_util.h
  81. unittest_util_unittest.cc
  82. update_service.cc
  83. update_service.h
  84. update_service_impl.cc
  85. update_service_impl.h
  86. update_service_impl_inactive.cc
  87. update_service_impl_inactive.h
  88. update_service_internal.h
  89. update_service_internal_impl.cc
  90. update_service_internal_impl.h
  91. update_service_internal_impl_inactive.cc
  92. update_service_internal_impl_inactive.h
  93. update_service_unittest.cc
  94. updater.cc
  95. updater.h
  96. updater_branding.h.in
  97. updater_scope.h
  98. updater_scope_unittest.cc
  99. updater_unittest.cc
  100. updater_version.h.in
  101. util.cc
  102. 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.