OLD | NEW |
---|---|
1 PasswordManager is in the process of becoming a layered component | 1 Ideal structure of the component: |
2 (https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered -components-design) | 2 - core/: Essentials, not depending on any other layers. |
engedy
2015/08/04 10:11:28
nit: We could keep the URL.
vabr (Chromium)
2015/08/04 12:21:25
Done.
| |
3 to enable it to be shared cleanly on iOS. | 3 All other layers may depend on core: |
4 | 4 - content/: Content-specific embedding. |
5 When this process is complete, this component will have the following structure: | 5 - sync/: Sync-specific embedding. |
6 | |
7 - core/: shared code that does not depend on src/content/ or src/ios/ | |
8 - content/: Driver for the shared code based on the content layer. | |
9 - ios/: Driver for the shared code based on src/ios. | |
OLD | NEW |