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

Side by Side Diff: chrome/app/policy/policy_templates.json

Issue 7390027: Added group policies to enable/disable importing of data from other browsers. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: . Created 9 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/first_run/first_run.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 # policy_templates.json - Metafile for policy templates 2 # policy_templates.json - Metafile for policy templates
3 # 3 #
4 # The content of this file is evaluated as a Python expression. 4 # The content of this file is evaluated as a Python expression.
5 # 5 #
6 # This file is used as input to generate the following policy templates: 6 # This file is used as input to generate the following policy templates:
7 # ADM, ADMX+ADML, MCX/plist and html documentation. 7 # ADM, ADMX+ADML, MCX/plist and html documentation.
8 # 8 #
9 # Policy templates are user interface definitions or documents about the 9 # Policy templates are user interface definitions or documents about the
10 # policies that can be used to configure Chrome. Each policy is a name-value 10 # policies that can be used to configure Chrome. Each policy is a name-value
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 # policy configuration files. 'dynamic_refresh' controls if the generated 87 # policy configuration files. 'dynamic_refresh' controls if the generated
88 # documentation should state that the policy supports dynamic refresh or not. 88 # documentation should state that the policy supports dynamic refresh or not.
89 # Supporting dynamic refresh means that Chrome respects the changes to the 89 # Supporting dynamic refresh means that Chrome respects the changes to the
90 # policy immediately, without the need for restart. 90 # policy immediately, without the need for restart.
91 # 91 #
92 # IDs: 92 # IDs:
93 # Since a Protocol Buffer definition is generated from this file, unique and 93 # Since a Protocol Buffer definition is generated from this file, unique and
94 # persistent IDs for all fields (but not for groups!) are needed. These are 94 # persistent IDs for all fields (but not for groups!) are needed. These are
95 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, 95 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
96 # because doing so would break the deployed wire format! 96 # because doing so would break the deployed wire format!
97 # For your editing convenience: highest ID currently used: 96 97 # For your editing convenience: highest ID currently used: 101
98 # 98 #
99 # Placeholders: 99 # Placeholders:
100 # The following placeholder strings are automatically substituted: 100 # The following placeholder strings are automatically substituted:
101 # $1 -> Google Chrome / Chromium 101 # $1 -> Google Chrome / Chromium
102 # $2 -> Google Chrome OS / Chromium OS 102 # $2 -> Google Chrome OS / Chromium OS
103 # $3 -> Google Chrome Frame / Chromium Frame 103 # $3 -> Google Chrome Frame / Chromium Frame
104 # $6 is reserved for doc_writer 104 # $6 is reserved for doc_writer
105 # 105 #
106 # Device Policy: 106 # Device Policy:
107 # An additional flag device_only (optional, defaults to False) indicates 107 # An additional flag device_only (optional, defaults to False) indicates
(...skipping 1552 matching lines...) Expand 10 before | Expand all | Expand 10 after
1660 ], 1660 ],
1661 'supported_on': ['chrome_os:1.0-'], 1661 'supported_on': ['chrome_os:1.0-'],
1662 'device_only': True, 1662 'device_only': True,
1663 'features': {'dynamic_refresh': 1}, 1663 'features': {'dynamic_refresh': 1},
1664 'example_value': 'stable-channel', 1664 'example_value': 'stable-channel',
1665 'id': 91, 1665 'id': 91,
1666 'caption': '''Release channel''', 1666 'caption': '''Release channel''',
1667 'desc': '''Specifies the release channel that this device should be locked to. This policy is a work in progress; currently, the user can still change the release channel even if it's specified by the policy.''' 1667 'desc': '''Specifies the release channel that this device should be locked to. This policy is a work in progress; currently, the user can still change the release channel even if it's specified by the policy.'''
1668 }, 1668 },
1669 { 1669 {
1670 'name': 'ImportBookmarks',
1671 'type': 'main',
1672 'supported_on': ['chrome.*:15-'],
1673 'features': {'dynamic_refresh': 1},
1674 'example_value': True,
1675 'id': 97,
1676 'caption': '''Import bookmarks from default browser on first run''',
1677 'desc': '''This policy forces bookmarks to be imported from the current de fault browser if enabled. If disabled, no bookmarks are imported. If it is not c onfigured, the default behaviour is used. If enabled, this policy also affects t he import dialog.''',
1678 'label': '''Import bookmarks from default browser on first run''',
1679 },
1680 {
1681 'name': 'ImportHistory',
1682 'type': 'main',
1683 'supported_on': ['chrome.*:15-'],
1684 'features': {'dynamic_refresh': 1},
1685 'example_value': True,
1686 'id': 98,
1687 'caption': '''Import browsing history from default browser on first run''' ,
1688 'desc': '''This policy forces the browsing history to be imported from the current default browser if enabled. If disabled, no browsing history is importe d. If it is not configured, the default behaviour is used. If enabled, this poli cy also affects the import dialog.''',
1689 'label': '''Import browsing history from default browser on first run''',
1690 },
1691 {
1692 'name': 'ImportHomepage',
1693 'type': 'main',
1694 'supported_on': ['chrome.*:15-'],
1695 'features': {'dynamic_refresh': 1},
1696 'example_value': True,
1697 'id': 99,
1698 'caption': '''Import of homepage from default browser on first run''',
1699 'desc': '''This policy forces the home page to be imported from the curren t default browser if enabled. If disabled, the home page is not imported. If it is not configured, the default behaviour is used.''',
1700 'label': '''Import of homepage from default browser on first run''',
1701 },
1702 {
1703 'name': 'ImportSearchEngine',
1704 'type': 'main',
1705 'supported_on': ['chrome.*:15-'],
1706 'features': {'dynamic_refresh': 1},
1707 'example_value': True,
1708 'id': 100,
1709 'caption': '''Import search engines from default browser on first run''',
1710 'desc': '''This policy forces search engines to be imported from the curre nt default browser if enabled. If disabled, the default search engine is not imp orted. If it is not configured, the default behaviour is used. If enabled, this policy also affects the import dialog.''',
1711 'label': '''Import search engines from default browser on first run''',
1712 },
1713 {
1714 'name': 'ImportSavedPasswords',
1715 'type': 'main',
1716 'supported_on': ['chrome.*:15-'],
1717 'features': {'dynamic_refresh': 1},
1718 'example_value': True,
1719 'id': 101,
1720 'caption': '''Import saved passwords from default browser on first run''',
1721 'desc': '''This policy forces the saved passwords to be imported from the previous default browser if enabled. If disabled, the saved passwords are not im ported. If it is not configured, the default behaviour is used. If enabled, this policy also affects the import dialog.''',
1722 'label': '''Import saved passwords from default browser on first run''',
1723 },
1724 {
1670 'name': 'MaxConnectionsPerProxy', 1725 'name': 'MaxConnectionsPerProxy',
1671 'type': 'int', 1726 'type': 'int',
1672 'supported_on': ['chrome_os:1.0-','chrome.*:14-'], 1727 'supported_on': ['chrome_os:1.0-','chrome.*:14-'],
1673 'features': {'dynamic_refresh': 0}, 1728 'features': {'dynamic_refresh': 0},
1674 'example_value': 32, 1729 'example_value': 32,
1675 'id': 92, 1730 'id': 92,
1676 'caption': '''Maximal number of concurrent connections to the proxy server ''', 1731 'caption': '''Maximal number of concurrent connections to the proxy server ''',
1677 'desc': '''Specifies the maximal number of simultanious connections to the proxy server. 1732 'desc': '''Specifies the maximal number of simultanious connections to the proxy server.
1678 1733
1679 Some proxy servers can not handle high number of concurrent connections pe r client and this can be solved by setting this policy to a lower value. 1734 Some proxy servers can not handle high number of concurrent connections pe r client and this can be solved by setting this policy to a lower value.
1680 1735
1681 The value of this policy should be lower than 100 and higher than 6 and th e default value is 32. 1736 The value of this policy should be lower than 100 and higher than 6 and th e default value is 32.
1682 1737
1683 Some web apps are known to consume many connections with hanging GETs, so lowering below 32 may lead to browser networking hangs if too many such web apps are open. Lower below the default at your own risk.''', 1738 Some web apps are known to consume many connections with hanging GETs, so lowering below 32 may lead to browser networking hangs if too many such web apps are open. Lower below the default at your own risk.''',
1684 }, 1739 },
1685 { 1740 {
1686 'name': 'HideWebStorePromo', 1741 'name': 'HideWebStorePromo',
1687 'type': 'main', 1742 'type': 'main',
1688 'supported_on': ['chrome.*:15-', 'chrome_os:0.15-'], 1743 'supported_on': ['chrome.*:15-', 'chrome_os:0.15-'],
1689 'features': {'dynamic_refresh': 0}, 1744 'features': {'dynamic_refresh': 0},
1690 'example_value': False, 1745 'example_value': False,
1691 'id': 96, 1746 'id': 96,
1692 'caption': '''Prevent app promotions from appearing on the new tab page''' , 1747 'caption': '''Prevent app promotions from appearing on the new tab page''' ,
1693 'desc': '''When set to True, promotions for Chrome Web Store apps will not appear on the new tab page.''', 1748 'desc': '''When set to True, promotions for Chrome Web Store apps will not appear on the new tab page.''',
1694 }, 1749 },
1695
1696 ], 1750 ],
1697 'messages': { 1751 'messages': {
1698 # Messages that are not associated to any policies. 1752 # Messages that are not associated to any policies.
1699 'win_supported_winxpsp2': { 1753 'win_supported_winxpsp2': {
1700 'desc': '''A label specifying the oldest possible compatible version of Wi ndows. This text will appear right next to a label containing the text 'Supporte d on:'.''', 1754 'desc': '''A label specifying the oldest possible compatible version of Wi ndows. This text will appear right next to a label containing the text 'Supporte d on:'.''',
1701 'text': '''Microsoft Windows XP SP2 or later''' 1755 'text': '''Microsoft Windows XP SP2 or later'''
1702 }, 1756 },
1703 'mac_chrome_preferences': { 1757 'mac_chrome_preferences': {
1704 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chrome are being edited''', 1758 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chrome are being edited''',
1705 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc es''' 1759 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc es'''
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
1776 'desc': '''The name of the feature that indicates for a given policy that changes to it are respected by Chrome without a browser restart''', 1830 'desc': '''The name of the feature that indicates for a given policy that changes to it are respected by Chrome without a browser restart''',
1777 'text': '''Dynamic Policy Refresh''' 1831 'text': '''Dynamic Policy Refresh'''
1778 }, 1832 },
1779 'doc_deprecated': { 1833 'doc_deprecated': {
1780 'desc': '''Text appended in parentheses to the policy name to indicate t h at it has been deprecated''', 1834 'desc': '''Text appended in parentheses to the policy name to indicate t h at it has been deprecated''',
1781 'text': 'deprecated', 1835 'text': 'deprecated',
1782 } 1836 }
1783 }, 1837 },
1784 'placeholders': [], 1838 'placeholders': [],
1785 } 1839 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/first_run/first_run.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698