summaryrefslogtreecommitdiffstats
path: root/components/components_locale_settings.grd
Commit message (Collapse)AuthorAgeFilesLines
* Avoid including the terms of service html pages twice on iOS.sdefresne2016-02-151-2/+2
| | | | | | | | | | | | | Chrome on iOS copy the terms of service html pages in the application bundle and does not uses the IDS_TERMS_HTML (since they are displayed via a web view and it is easier to load from disk than from a string) so avoid duplicating the text in the application, saving around 3.3Mb. BUG=None Review URL: https://codereview.chromium.org/1700713003 Cr-Commit-Position: refs/heads/master@{#375457}
* Componentize Chrome terms of service, Accept-Languages & default encoding.sdefresne2016-02-111-0/+214
In order to share those strings with Chrome on iOS, componentize the strings IDS_TERMS_HTML, IDS_ACCEPT_LANGUAGES, IDS_DEFAULT_ENCODING. Remove usafe of IDS_IOS_ACCEPT_LANGUAGES and IDS_IOS_DEFAULT_ENCODING as they are duplicates of the newly componentized strings (but do not remove them yet as they are still used downstream). Fix the script packing the resources to pack those new generated .pak files for both iOS and other platforms. BUG=568486 Review URL: https://codereview.chromium.org/1679283002 Cr-Commit-Position: refs/heads/master@{#374951}