tree: a532eb1dd839aba3f4dce7db5153c64491ba89d1 [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. constants_prod.cc
  26. constants_test.cc
  27. crash_client.cc
  28. crash_client.h
  29. crash_reporter.cc
  30. crash_reporter.h
  31. crx_downloader_factory.h
  32. DEPS
  33. DIR_METADATA
  34. enum_traits.h
  35. enum_traits_unittest.cc
  36. external_constants.cc
  37. external_constants.h
  38. external_constants_builder.cc
  39. external_constants_builder.h
  40. external_constants_builder_unittest.cc
  41. external_constants_default.cc
  42. external_constants_default.h
  43. external_constants_override.cc
  44. external_constants_override.h
  45. external_constants_override_unittest.cc
  46. external_constants_prod.cc
  47. installer.cc
  48. installer.h
  49. installer_mac.cc
  50. launchd_util.cc
  51. launchd_util.h
  52. lib_util.h
  53. lib_util_mac.mm
  54. lib_util_unittest.cc
  55. lib_util_win.cc
  56. OWNERS
  57. persisted_data.cc
  58. persisted_data.h
  59. persisted_data_unittest.cc
  60. prefs.cc
  61. prefs.h
  62. prefs_impl.h
  63. prefs_mac.mm
  64. prefs_unittest.cc
  65. prefs_win.cc
  66. README.md
  67. registration_data.cc
  68. registration_data.h
  69. run_all_unittests.cc
  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_internal_impl_qualifying.cc
  94. update_service_internal_impl_qualifying.h
  95. update_service_unittest.cc
  96. updater.cc
  97. updater.h
  98. updater_branding.h.in
  99. updater_scope.cc
  100. updater_scope.h
  101. updater_scope_unittest.cc
  102. updater_unittest.cc
  103. updater_version.h.in
  104. util.cc
  105. util.h
  106. util_mac.mm
  107. 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.