Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(443)

Side by Side Diff: components/translate/README

Issue 93603006: Move Translate-related files to components/translate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/translate.gypi ('k') | components/translate/common/translate_constants.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 - translate/language detection depends on the CLD library and should only be 1 - translate/language detection depends on the CLD library and should only be
2 used from the renderer to avoid bloating the DLLs on Windows. 2 used from the renderer to avoid bloating the DLLs on Windows.
3 3
4 - Translate is not allowed to depend on content/, because it is used by iOS. 4 - Translate is in the process of becoming a layered component
5 If dependences on content/ need to be added to Translate, it will have to be 5 (https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered -components-design)
6 made into a layered component: see 6 to enable it to be shared cleanly on iOS.
7 http://www.chromium.org/developers/design-documents/layered-components-design 7
8 for more information. 8 When this process is complete, this component will have the following structure:
9
10 core/: 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)
15 content/: 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.
19 ios/: Driver for the shared code based on src/ios.
OLDNEW
« no previous file with comments | « components/translate.gypi ('k') | components/translate/common/translate_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698