tree: 4b9582bdf1a12191828e00c06a6db92fe9acc47e [path history] [tgz]
  1. content/
  2. core/
  3. ios/
  4. DEPS
  5. DIR_METADATA
  6. OWNERS
  7. README.md
components/keyed_service/README.md

KeyedService and KeyedServiceFactory together support building a dependency tree of services that are all keyed off the same object (typically, content::BrowserContext or web::BrowserState), and whose teardown order is managed according to the expressed dependency order.

KeyedService is a layered component (https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered-components-design) to enable it to be shared cleanly on iOS.

This component has the following structure:

  • core/: shared code that does not depend on src/content/ or src/ios/
  • content/: Code based on the content layer.
  • ios/: Code based on src/ios.