README 985 B

12345678910111213141516171819
  1. - translate/language detection depends on the CLD library and should only be
  2. used from the renderer to avoid bloating the DLLs on Windows.
  3. - Translate is in the process of becoming 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. When this process is complete, this component will have the following structure:
  7. core/: shared code that does not depend on src/content/ or src/ios/
  8. browser/: Browser process code
  9. common/: Code shared by the browser and the renderer
  10. language_detection/: Language detection code, only used from the renderer on
  11. all platforms but iOS (where it is used from the browser)
  12. content/: Driver for the shared code based on the content layer.
  13. browser/: Browser process code.
  14. renderer/: Renderer process code.
  15. common/: Code shared by the browser and the renderer.
  16. ios/: Driver for the shared code based on src/ios.