tree: b67b052d9ad00b61cd7a9f0c7abebe72f7b325b4 [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_override.cc
  40. external_constants_override.h
  41. external_constants_override_unittest.cc
  42. installer.cc
  43. installer.h
  44. installer_mac.cc
  45. launchd_util.cc
  46. launchd_util.h
  47. lib_util.h
  48. lib_util_mac.mm
  49. lib_util_unittest.cc
  50. lib_util_win.cc
  51. OWNERS
  52. persisted_data.cc
  53. persisted_data.h
  54. persisted_data_unittest.cc
  55. prefs.cc
  56. prefs.h
  57. prefs_impl.h
  58. prefs_mac.mm
  59. prefs_unittest.cc
  60. prefs_win.cc
  61. README.md
  62. registration_data.cc
  63. registration_data.h
  64. run_all_unittests.cc
  65. run_updater_tests.py
  66. service_factory_mac.mm
  67. service_factory_win.cc
  68. setup.h
  69. setup_mac.mm
  70. setup_win.cc
  71. splash_screen.h
  72. tag.cc
  73. tag.h
  74. tag_unittest.cc
  75. unittest_util.cc
  76. unittest_util.h
  77. unittest_util_unittest.cc
  78. update_service.cc
  79. update_service.h
  80. update_service_impl.cc
  81. update_service_impl.h
  82. update_service_impl_inactive.cc
  83. update_service_impl_inactive.h
  84. update_service_internal.h
  85. update_service_internal_impl.cc
  86. update_service_internal_impl.h
  87. update_service_internal_impl_inactive.cc
  88. update_service_internal_impl_inactive.h
  89. update_service_unittest.cc
  90. updater.cc
  91. updater.h
  92. updater_branding.h.in
  93. updater_scope.cc
  94. updater_scope.h
  95. updater_scope_unittest.cc
  96. updater_unittest.cc
  97. updater_version.cc.in
  98. updater_version.h
  99. updater_version_offset.cc.in
  100. util.cc
  101. 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.