OLD | NEW |
1 Autofill is in the process of becoming a layered component | 1 Autofill is in the process of becoming a layered component |
2 (https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered
-components-design) | 2 (https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered
-components-design) |
3 to enable it to be shared cleanly on iOS. | 3 to enable it to be shared cleanly on iOS. |
4 | 4 |
5 When this process is complete, this component will have the following structure: | 5 When this process is complete, this component will have the following structure: |
6 | 6 |
7 - Top-level shared code that does not depend on src/content/ or src/ios/ | 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 |
8 - content/: Driver for the shared code based on the content layer. | 10 - content/: Driver for the shared code based on the content layer. |
9 - browser/: Browser process code. | 11 - browser/: Browser process code. |
10 - renderer/: Renderer process code. | 12 - renderer/: Renderer process code. |
11 - common/: Code shared by the browser and the renderer. | 13 - common/: Code shared by the browser and the renderer. |
12 - ios/: Driver for the shared code based on src/ios. | 14 - ios/: Driver for the shared code based on src/ios. |
13 | 15 |
14 See | 16 See |
15 https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered-
components-technical-approach/making-autofill-into-a-layered-component | 17 https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered-
components-technical-approach/making-autofill-into-a-layered-component |
16 for an outline of the project. | 18 for an outline of the project. |
17 | 19 |
18 For pointers on how to continue getting your work done as the component moves | 20 For pointers on how to continue getting your work done as the component moves |
19 into its new structure, see | 21 into its new structure, see |
20 https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered-
components-technical-approach/making-autofill-into-a-layered-component#TOC-Help-
How-Do-I-Get-My-Autofill-Related-Work-Done- | 22 https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered-
components-technical-approach/making-autofill-into-a-layered-component#TOC-Help-
How-Do-I-Get-My-Autofill-Related-Work-Done- |
21 | 23 |
OLD | NEW |