tree: cb81b81f80fe5587f2a8ab2a455b2a0f6992318e [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. COMMON_METADATA
  22. configurator.cc
  23. configurator.h
  24. constants.cc
  25. constants.h
  26. constants_prod.cc
  27. constants_test.cc
  28. crash_client.cc
  29. crash_client.h
  30. crash_reporter.cc
  31. crash_reporter.h
  32. crx_downloader_factory.h
  33. DEPS
  34. DIR_METADATA
  35. enum_traits.h
  36. enum_traits_unittest.cc
  37. external_constants.cc
  38. external_constants.h
  39. external_constants_builder.cc
  40. external_constants_builder.h
  41. external_constants_builder_unittest.cc
  42. external_constants_default.cc
  43. external_constants_default.h
  44. external_constants_override.cc
  45. external_constants_override.h
  46. external_constants_override_unittest.cc
  47. external_constants_prod.cc
  48. installer.cc
  49. installer.h
  50. installer_mac.cc
  51. launchd_util.cc
  52. launchd_util.h
  53. lib_util.h
  54. lib_util_mac.mm
  55. lib_util_unittest.cc
  56. lib_util_win.cc
  57. OWNERS
  58. persisted_data.cc
  59. persisted_data.h
  60. persisted_data_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. service_factory_mac.mm
  72. service_factory_win.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. update_service.cc
  84. update_service.h
  85. update_service_impl.cc
  86. update_service_impl.h
  87. update_service_impl_inactive.cc
  88. update_service_impl_inactive.h
  89. update_service_internal.h
  90. update_service_internal_impl.cc
  91. update_service_internal_impl.h
  92. update_service_internal_impl_inactive.cc
  93. update_service_internal_impl_inactive.h
  94. update_service_internal_impl_qualifying.cc
  95. update_service_internal_impl_qualifying.h
  96. update_service_unittest.cc
  97. updater.cc
  98. updater.h
  99. updater_branding.h.in
  100. updater_scope.cc
  101. updater_scope.h
  102. updater_scope_unittest.cc
  103. updater_unittest.cc
  104. updater_version.h.in
  105. util.cc
  106. util.h
  107. util_mac.mm
  108. util_win.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.