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

Side by Side Diff: components/policy/resources/policy_templates.json

Issue 937153003: Document the idiosyncrasies of policy provisioning on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing comma. Created 5 years, 10 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/policy/core/common/policy_loader_win.cc ('k') | no next file » | 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 'id': 1, 165 'id': 1,
166 'caption': '''Configure the home page URL''', 166 'caption': '''Configure the home page URL''',
167 'desc': '''Configures the default home page URL in <ph name="PRODUCT_N AME">$1<ex>Google Chrome</ex></ph> and prevents users from changing it. 167 'desc': '''Configures the default home page URL in <ph name="PRODUCT_N AME">$1<ex>Google Chrome</ex></ph> and prevents users from changing it.
168 168
169 The home page is the page opened by the Home button. The pages that op en on startup are controlled by the RestoreOnStartup policies. 169 The home page is the page opened by the Home button. The pages that op en on startup are controlled by the RestoreOnStartup policies.
170 170
171 The home page type can either be set to a URL you specify here or set to the New Tab Page. If you select the New Tab Page, then this policy does not t ake effect. 171 The home page type can either be set to a URL you specify here or set to the New Tab Page. If you select the New Tab Page, then this policy does not t ake effect.
172 172
173 If you enable this setting, users cannot change their home page URL in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>, but they can still can c hoose the New Tab Page as their home page. 173 If you enable this setting, users cannot change their home page URL in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>, but they can still can c hoose the New Tab Page as their home page.
174 174
175 Leaving this policy not set will allow the user to choose his home pag e on his own if HomepageIsNewTabPage is not set too.''', 175 Leaving this policy not set will allow the user to choose his home pag e on his own if HomepageIsNewTabPage is not set too.
176
177 This policy is not available on Windows instances that are not joined
178 to an Active Directory domain.''',
176 'label': '''Home page URL''', 179 'label': '''Home page URL''',
177 }, 180 },
178 { 181 {
179 'name': 'HomepageIsNewTabPage', 182 'name': 'HomepageIsNewTabPage',
180 'type': 'main', 183 'type': 'main',
181 'schema': { 'type': 'boolean' }, 184 'schema': { 'type': 'boolean' },
182 'supported_on': ['chrome.*:8-', 'chrome_os:11-'], 185 'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
183 'features': { 186 'features': {
184 'can_be_recommended': True, 187 'can_be_recommended': True,
185 'dynamic_refresh': True, 188 'dynamic_refresh': True,
186 'per_profile': True, 189 'per_profile': True,
187 }, 190 },
188 'example_value': True, 191 'example_value': True,
189 'id': 2, 192 'id': 2,
190 'caption': '''Use New Tab Page as homepage''', 193 'caption': '''Use New Tab Page as homepage''',
191 'desc': '''Configures the type of the default home page in <ph name="P RODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing home page preferences. The home page can either be set to a URL you specify or set t o the New Tab Page. 194 'desc': '''Configures the type of the default home page in <ph name="P RODUCT_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing home page preferences. The home page can either be set to a URL you specify or set t o the New Tab Page.
192 195
193 If you enable this setting, the New Tab Page is always used for the ho me page, and the home page URL location is ignored. 196 If you enable this setting, the New Tab Page is always used for the ho me page, and the home page URL location is ignored.
194 197
195 If you disable this setting, the user's homepage will never be the New Tab Page, unless its URL is set to 'chrome://newtab'. 198 If you disable this setting, the user's homepage will never be the New Tab Page, unless its URL is set to 'chrome://newtab'.
196 199
197 If you enable or disable this setting, users cannot change their homep age type in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. 200 If you enable or disable this setting, users cannot change their homep age type in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
198 201
199 Leaving this policy not set will allow the user to choose whether the new tab page is his home page on his own.''', 202 Leaving this policy not set will allow the user to choose whether the new tab page is his home page on his own.
203
204 This policy is not available on Windows instances that are not joined
205 to an Active Directory domain.''',
200 }, 206 },
201 ], 207 ],
202 }, 208 },
203 { 209 {
204 'name': 'DefaultBrowserSettingEnabled', 210 'name': 'DefaultBrowserSettingEnabled',
205 'type': 'main', 211 'type': 'main',
206 'schema': { 'type': 'boolean' }, 212 'schema': { 'type': 'boolean' },
207 'supported_on': ['chrome.*:11-'], 213 'supported_on': ['chrome.*:11-'],
208 'features': { 214 'features': {
209 'dynamic_refresh': True, 215 'dynamic_refresh': True,
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
970 'id': 15, 976 'id': 15,
971 'caption': '''Enable reporting of RAPPOR, usage, and crash-related data''' , 977 'caption': '''Enable reporting of RAPPOR, usage, and crash-related data''' ,
972 'desc': '''Enables anonymous reporting of RAPPOR, usage, and crash-related data about <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to Google and prevents users from changing this setting. 978 'desc': '''Enables anonymous reporting of RAPPOR, usage, and crash-related data about <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> to Google and prevents users from changing this setting.
973 979
974 If you enable this setting, anonymous reporting of RAPPOR, usage, and cras h-related data is sent to Google. 980 If you enable this setting, anonymous reporting of RAPPOR, usage, and cras h-related data is sent to Google.
975 981
976 If you disable this setting, anonymous reporting of RAPPOR, usage, and cra sh-related data is never sent to Google. 982 If you disable this setting, anonymous reporting of RAPPOR, usage, and cra sh-related data is never sent to Google.
977 983
978 If you enable or disable this setting, users cannot change or override thi s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. 984 If you enable or disable this setting, users cannot change or override thi s setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
979 985
980 If this policy is left not set, RAPPOR will be enabled unless disabled by the user, and the usage and crash reporting setting will be what the user chose upon installation / first run.''', 986 If this policy is left not set, RAPPOR will be enabled unless disabled by the user, and the usage and crash reporting setting will be what the user chose upon installation / first run.
987
988 This policy is not available on Windows instances that are not joined to
989 an Active Directory domain.''',
981 }, 990 },
982 { 991 {
983 'name': 'PasswordManager', 992 'name': 'PasswordManager',
984 'type': 'group', 993 'type': 'group',
985 'caption': '''Password manager''', 994 'caption': '''Password manager''',
986 'desc': '''Configures the password manager. If the password manager is ena bled, then you can choose to enable or disable whether the user may show stored passwords in clear text.''', 995 'desc': '''Configures the password manager. If the password manager is ena bled, then you can choose to enable or disable whether the user may show stored passwords in clear text.''',
987 'policies': [ 996 'policies': [
988 { 997 {
989 'name': 'PasswordManagerEnabled', 998 'name': 'PasswordManagerEnabled',
990 'type': 'main', 999 'type': 'main',
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after
1790 'supported_on': ['chrome.*:9-', 'chrome_os:11-'], 1799 'supported_on': ['chrome.*:9-', 'chrome_os:11-'],
1791 'features': { 1800 'features': {
1792 'dynamic_refresh': True, 1801 'dynamic_refresh': True,
1793 'per_profile': True, 1802 'per_profile': True,
1794 }, 1803 },
1795 'example_value': ['lcncmkcnkcdbbanbjakcencbaoegdjlp;https://clients2.g oogle.com/service/update2/crx'], 1804 'example_value': ['lcncmkcnkcdbbanbjakcencbaoegdjlp;https://clients2.g oogle.com/service/update2/crx'],
1796 'id': 34, 1805 'id': 34,
1797 'caption': '''Configure the list of force-installed extensions''', 1806 'caption': '''Configure the list of force-installed extensions''',
1798 'desc': '''Allows you to specify a list of extensions that will be ins talled silently, without user interaction. 1807 'desc': '''Allows you to specify a list of extensions that will be ins talled silently, without user interaction.
1799 1808
1809 For Windows instances that are not joined to an Active Directory
1810 domain, forced installation is limited to extensions listed in the
1811 Chrome Web Store.
1812
1800 Each item of the list is a string that contains an extension ID and an update URL delimited by a semicolon (<ph name="SEMICOLON">;</ph>). The extensio n ID is the 32-letter string found e.g. on <ph name="CHROME_EXTENSIONS_LINK">chr ome://extensions</ph> when in developer mode. The update URL should point to an Update Manifest XML document as described at <ph name="LINK_TO_EXTENSION_DOC1">h ttps://developer.chrome.com/extensions/autoupdate</ph>. Note that the update URL set in this policy is only used for the initial installation; subsequent update s of the extension will use the update URL indicated in the extension's manifest . 1813 Each item of the list is a string that contains an extension ID and an update URL delimited by a semicolon (<ph name="SEMICOLON">;</ph>). The extensio n ID is the 32-letter string found e.g. on <ph name="CHROME_EXTENSIONS_LINK">chr ome://extensions</ph> when in developer mode. The update URL should point to an Update Manifest XML document as described at <ph name="LINK_TO_EXTENSION_DOC1">h ttps://developer.chrome.com/extensions/autoupdate</ph>. Note that the update URL set in this policy is only used for the initial installation; subsequent update s of the extension will use the update URL indicated in the extension's manifest .
1801 1814
1802 For each item, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> w ill retrieve the extension specified by the extension ID from the update service at the specified update URL and silently install it. 1815 For each item, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> w ill retrieve the extension specified by the extension ID from the update service at the specified update URL and silently install it.
1803 1816
1804 For example, <ph name="EXTENSION_POLICY_EXAMPLE">lcncmkcnkcdbbanbjakce ncbaoegdjlp;https://clients2.google.com/service/update2/crx</ph> installs the <p h name="EXTENSION_POLICY_EXAMPLE_EXTENSION_NAME">Google SSL Web Search</ph> exte nsion from the standard Chrome Web Store update URL. For more information about hosting extensions, see: <ph name="LINK_TO_EXTENSION_DOC2">https://developer.chr ome.com/extensions/hosting</ph>. 1817 For example, <ph name="EXTENSION_POLICY_EXAMPLE">lcncmkcnkcdbbanbjakce ncbaoegdjlp;https://clients2.google.com/service/update2/crx</ph> installs the <p h name="EXTENSION_POLICY_EXAMPLE_EXTENSION_NAME">Google SSL Web Search</ph> exte nsion from the standard Chrome Web Store update URL. For more information about hosting extensions, see: <ph name="LINK_TO_EXTENSION_DOC2">https://developer.chr ome.com/extensions/hosting</ph>.
1805 1818
1806 Users will be unable to uninstall extensions that are specified by thi s policy. If you remove an extension from this list, then it will be automatical ly uninstalled by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. Extensi ons specified in this list are also automatically whitelisted for installation; the ExtensionsInstallBlacklist does not affect them. 1819 Users will be unable to uninstall extensions that are specified by thi s policy. If you remove an extension from this list, then it will be automatical ly uninstalled by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. Extensi ons specified in this list are also automatically whitelisted for installation; the ExtensionsInstallBlacklist does not affect them.
1807 1820
1808 If this policy is left not set the user can uninstall any extension i n <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''', 1821 If this policy is left not set the user can uninstall any extension i n <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.''',
1809 'label': '''Extension IDs and update URLs to be silently installed''', 1822 'label': '''Extension IDs and update URLs to be silently installed''',
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
2088 2101
2089 If you choose 'Open New Tab Page' the New Tab Page will always be open ed when you start <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. 2102 If you choose 'Open New Tab Page' the New Tab Page will always be open ed when you start <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
2090 2103
2091 If you choose 'Restore the last session', the URLs that were open last time <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> was closed will be r eopened and the browsing session will be restored as it was left. 2104 If you choose 'Restore the last session', the URLs that were open last time <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> was closed will be r eopened and the browsing session will be restored as it was left.
2092 Choosing this option disables some settings that rely on sessions or t hat perform actions on exit (such as Clear browsing data on exit or session-only cookies). 2105 Choosing this option disables some settings that rely on sessions or t hat perform actions on exit (such as Clear browsing data on exit or session-only cookies).
2093 2106
2094 If you choose 'Open a list of URLs', the list of 'URLs to open on star tup' will be opened when a user starts <ph name="PRODUCT_NAME">$1<ex>Google Chro me</ex></ph>. 2107 If you choose 'Open a list of URLs', the list of 'URLs to open on star tup' will be opened when a user starts <ph name="PRODUCT_NAME">$1<ex>Google Chro me</ex></ph>.
2095 2108
2096 If you enable this setting, users cannot change or override it in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. 2109 If you enable this setting, users cannot change or override it in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
2097 2110
2098 Disabling this setting is equivalent to leaving it not configured. The user will still be able to change it in <ph name="PRODUCT_NAME">$1<ex>Google Ch rome</ex></ph>.''', 2111 Disabling this setting is equivalent to leaving it not configured. The user will still be able to change it in <ph name="PRODUCT_NAME">$1<ex>Google Ch rome</ex></ph>.
2112
2113 This policy is not available on Windows instances that are not joined
2114 to an Active Directory domain.''',
2099 }, 2115 },
2100 { 2116 {
2101 'name': 'RestoreOnStartupURLs', 2117 'name': 'RestoreOnStartupURLs',
2102 'type': 'list', 2118 'type': 'list',
2103 'schema': { 2119 'schema': {
2104 'type': 'array', 2120 'type': 'array',
2105 'items': { 'type': 'string' }, 2121 'items': { 'type': 'string' },
2106 }, 2122 },
2107 'supported_on': ['chrome.*:8-', 'chrome_os:11-'], 2123 'supported_on': ['chrome.*:8-', 'chrome_os:11-'],
2108 'features': { 2124 'features': {
2109 'can_be_recommended': True, 2125 'can_be_recommended': True,
2110 'dynamic_refresh': True, 2126 'dynamic_refresh': True,
2111 'per_profile': True, 2127 'per_profile': True,
2112 }, 2128 },
2113 'example_value': ['http://example.com', 'http://chromium.org'], 2129 'example_value': ['http://example.com', 'http://chromium.org'],
2114 'id': 38, 2130 'id': 38,
2115 'caption': '''URLs to open on startup''', 2131 'caption': '''URLs to open on startup''',
2116 'desc': '''If 'Open a list of URLs' is selected as the startup action, this allows you to specify the list of URLs that are opened. If left not set no URL will be opened on start up. 2132 'desc': '''If 'Open a list of URLs' is selected as the startup action, this allows you to specify the list of URLs that are opened. If left not set no URL will be opened on start up.
2117 2133
2118 This policy only works if the 'RestoreOnStartup' policy is set to 'Res toreOnStartupIsURLs'.''', 2134 This policy only works if the 'RestoreOnStartup' policy is set to 'Res toreOnStartupIsURLs'.
2135
2136 This policy is not available on Windows instances that are not joined
2137 to an Active Directory domain.''',
2119 }, 2138 },
2120 ], 2139 ],
2121 }, 2140 },
2122 { 2141 {
2123 'name': 'BlockThirdPartyCookies', 2142 'name': 'BlockThirdPartyCookies',
2124 'type': 'main', 2143 'type': 'main',
2125 'schema': { 'type': 'boolean' }, 2144 'schema': { 'type': 'boolean' },
2126 'supported_on': ['chrome.*:10-', 'chrome_os:11-'], 2145 'supported_on': ['chrome.*:10-', 'chrome_os:11-'],
2127 'features': { 2146 'features': {
2128 'can_be_recommended': True, 2147 'can_be_recommended': True,
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
2168 'desc': '''Enables the use of a default search provider. 2187 'desc': '''Enables the use of a default search provider.
2169 2188
2170 If you enable this setting, a default search is performed when the use r types text in the omnibox that is not a URL. 2189 If you enable this setting, a default search is performed when the use r types text in the omnibox that is not a URL.
2171 2190
2172 You can specify the default search provider to be used by setting the rest of the default search policies. If these are left empty, the user can choos e the default provider. 2191 You can specify the default search provider to be used by setting the rest of the default search policies. If these are left empty, the user can choos e the default provider.
2173 2192
2174 If you disable this setting, no search is performed when the user ente rs non-URL text in the omnibox. 2193 If you disable this setting, no search is performed when the user ente rs non-URL text in the omnibox.
2175 2194
2176 If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. 2195 If you enable or disable this setting, users cannot change or override this setting in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>.
2177 2196
2178 If this policy is left not set, the default search provider is enabled , and the user will be able to set the search provider list.''', 2197 If this policy is left not set, the default search provider is enabled , and the user will be able to set the search provider list.
2198
2199 This policy is not available on Windows instances that are not joined
2200 to an Active Directory domain.''',
2179 }, 2201 },
2180 { 2202 {
2181 'name': 'DefaultSearchProviderName', 2203 'name': 'DefaultSearchProviderName',
2182 'type': 'string', 2204 'type': 'string',
2183 'schema': { 'type': 'string' }, 2205 'schema': { 'type': 'string' },
2184 'supported_on': [ 2206 'supported_on': [
2185 'chrome.*:8-', 2207 'chrome.*:8-',
2186 'chrome_os:11-', 2208 'chrome_os:11-',
2187 'android:30-', 2209 'android:30-',
2188 'ios:34-', 2210 'ios:34-',
(...skipping 5060 matching lines...) Expand 10 before | Expand all | Expand 10 after
7249 <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> internal to your 7271 <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> internal to your
7250 organization. Use of these policies outside of your organization (for 7272 organization. Use of these policies outside of your organization (for
7251 example, in a publicly distributed program) is considered malware and will 7273 example, in a publicly distributed program) is considered malware and will
7252 likely be labeled as malware by Google and anti-virus vendors. 7274 likely be labeled as malware by Google and anti-virus vendors.
7253 7275
7254 These settings don't need to be configured manually! Easy-to-use 7276 These settings don't need to be configured manually! Easy-to-use
7255 templates for Windows, Mac and Linux are available for download from <ph 7277 templates for Windows, Mac and Linux are available for download from <ph
7256 name="POLICY_TEMPLATE_DOWNLOAD_URL">http://www.chromium.org/administrators /policy-templates<ex> 7278 name="POLICY_TEMPLATE_DOWNLOAD_URL">http://www.chromium.org/administrators /policy-templates<ex>
7257 http://www.chromium.org/administrators/policy-templates</ex></ph>. 7279 http://www.chromium.org/administrators/policy-templates</ex></ph>.
7258 7280
7259 Note: Starting with <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> 7281 The recommended way to configure policy on Windows is via GPO, although
7260 28, policies are loaded directly from the Group Policy API on 7282 provisioning policy via registry is still supported for Windows instances
7261 Windows. Policies manually written to the registry will be ignored. See 7283 that are joined to an Active Directory domain.'''
7262 http://crbug.com/259236 for details.
7263
7264 Starting with <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> 35, po licies are read directly from the registry if the workstation is joined to an Ac tive Directory domain; otherwise the policies are read from GPO.'''
7265 }, 7284 },
7266 'doc_back_to_top': { 7285 'doc_back_to_top': {
7267 'desc': '''Text of a link in the generated policy documentation, that take s the user to the top of the page''', 7286 'desc': '''Text of a link in the generated policy documentation, that take s the user to the top of the page''',
7268 'text': '''Back to top''' 7287 'text': '''Back to top'''
7269 }, 7288 },
7270 'doc_supported': { 7289 'doc_supported': {
7271 'desc': '''Appears next to the name of each supported feature in the 'list of supported policy features' in the generated policy documentation''', 7290 'desc': '''Appears next to the name of each supported feature in the 'list of supported policy features' in the generated policy documentation''',
7272 'text': '''Yes''' 7291 'text': '''Yes'''
7273 }, 7292 },
7274 'doc_not_supported': { 7293 'doc_not_supported': {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
7307 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', 7326 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''',
7308 'text': 'Default Settings (users can override)', 7327 'text': 'Default Settings (users can override)',
7309 }, 7328 },
7310 'doc_complex_policies_on_windows': { 7329 'doc_complex_policies_on_windows': {
7311 'desc': '''Text pointing the user to a help article for complex policies o n Windows''', 7330 'desc': '''Text pointing the user to a help article for complex policies o n Windows''',
7312 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">http://www.chromium.org/administrators/complex-policies-on-windows<ex >http://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>''' , 7331 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">http://www.chromium.org/administrators/complex-policies-on-windows<ex >http://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>''' ,
7313 }, 7332 },
7314 }, 7333 },
7315 'placeholders': [], 7334 'placeholders': [],
7316 } 7335 }
OLDNEW
« no previous file with comments | « components/policy/core/common/policy_loader_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698