tree: ec6d4a9dc6184d37241117cff8febb45701e7171 [path history] [tgz]
  1. app/
  2. device_management/
  3. docs/
  4. mac/
  5. policy/
  6. protos/
  7. test/
  8. tools/
  9. win/
  10. action_handler.h
  11. activity.cc
  12. activity.h
  13. activity_impl.h
  14. activity_impl_mac.cc
  15. activity_impl_win.cc
  16. activity_impl_win_unittest.cc
  17. branding.gni
  18. BUILD.gn
  19. check_for_updates_task.cc
  20. check_for_updates_task.h
  21. configurator.cc
  22. configurator.h
  23. constants.cc
  24. constants.h
  25. crash_client.cc
  26. crash_client.h
  27. crash_reporter.cc
  28. crash_reporter.h
  29. crx_downloader_factory.h
  30. DEPS
  31. DIR_METADATA
  32. enum_traits.h
  33. enum_traits_unittest.cc
  34. external_constants.cc
  35. external_constants.h
  36. external_constants_builder.cc
  37. external_constants_builder.h
  38. external_constants_builder_unittest.cc
  39. external_constants_default.cc
  40. external_constants_default.h
  41. external_constants_override.cc
  42. external_constants_override.h
  43. external_constants_override_unittest.cc
  44. external_constants_prod.cc
  45. installer.cc
  46. installer.h
  47. installer_mac.cc
  48. launchd_util.cc
  49. launchd_util.h
  50. lib_util.h
  51. lib_util_mac.mm
  52. lib_util_unittest.cc
  53. lib_util_win.cc
  54. OWNERS
  55. persisted_data.cc
  56. persisted_data.h
  57. persisted_data_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. setup.h
  72. setup_mac.mm
  73. setup_win.cc
  74. splash_screen.h
  75. tag.cc
  76. tag.h
  77. tag_unittest.cc
  78. unittest_util.cc
  79. unittest_util.h
  80. unittest_util_unittest.cc
  81. update_service.cc
  82. update_service.h
  83. update_service_impl.cc
  84. update_service_impl.h
  85. update_service_impl_inactive.cc
  86. update_service_impl_inactive.h
  87. update_service_internal.h
  88. update_service_internal_impl.cc
  89. update_service_internal_impl.h
  90. update_service_internal_impl_inactive.cc
  91. update_service_internal_impl_inactive.h
  92. update_service_internal_impl_qualifying.cc
  93. update_service_internal_impl_qualifying.h
  94. update_service_unittest.cc
  95. updater.cc
  96. updater.h
  97. updater_branding.h.in
  98. updater_scope.cc
  99. updater_scope.h
  100. updater_scope_unittest.cc
  101. updater_unittest.cc
  102. updater_version.cc.in
  103. updater_version.h
  104. updater_version_offset.cc.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.