README 671 B

123456789101112131415
  1. This component provides a unified model of user language which will serve as the
  2. single source of truth for other components.
  3. Language is implemented as a layered component
  4. (https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered-components-design)
  5. to enable it to be shared cleanly on iOS.
  6. This component has the following structure:
  7. core/: shared code that does not depend on src/content or src/ios.
  8. content/: Driver for the shared code based on the content layer.
  9. browser/: Browser process code.
  10. renderer/: Renderer process code.
  11. common/: Code shared by the browser and the renderer.
  12. ios/: Driver for the shared code based on src/ios.