|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| content/ | | 03-May-2024 | - | 2,505 | 1,526 |
| core/ | | 03-May-2024 | - | 7,132 | 4,678 |
| DEPS | D | 03-May-2024 | 363 | 14 | 12 |
| OWNERS | D | 03-May-2024 | 345 | 10 | 9 |
| README | D | 03-May-2024 | 985 | 20 | 16 |
README
1- translate/language detection depends on the CLD library and should only be
2used from the renderer to avoid bloating the DLLs on Windows.
3
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)
6to enable it to be shared cleanly on iOS.
7
8When this process is complete, this component will have the following structure:
9
10core/: 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)
15content/: 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.
19ios/: Driver for the shared code based on src/ios.
20