[Sync] Componentize UIModelWorker.
[chromium-blink-merge.git] / components / translate / README
blobf5f2e4c8e760f75843dd7c717c816886d5021aca
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.
4 - Translate is in the process of becoming a layered component
5 (https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered-components-design)
6 to enable it to be shared cleanly on iOS.
8 When this process is complete, this component will have the following structure:
10 core/: shared code that does not depend on src/content/ or src/ios/
11   browser/: Browser process code
12   common/: Code shared by the browser and the renderer
13   language_detection/: Language detection code, only used from the renderer on
14                        all platforms but iOS (where it is used from the browser)
15 content/: Driver for the shared code based on the content layer.
16   browser/: Browser process code.
17   renderer/: Renderer process code.
18   common/: Code shared by the browser and the renderer.
19 ios/: Driver for the shared code based on src/ios.