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