Home | History | Annotate | Download | only in autofill
      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)
      3 to enable it to be shared cleanly on iOS. 
      4 
      5 When 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 
     16 See
     17 https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered-components-technical-approach/making-autofill-into-a-layered-component
     18 for an outline of the project.
     19 
     20 For pointers on how to continue getting your work done as the component moves
     21 into its new structure, see
     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-
     23 
     24