Chromium Code Reviews| Index: grit/format/policy_templates/writer_configuration.py |
| diff --git a/grit/format/policy_templates/writer_configuration.py b/grit/format/policy_templates/writer_configuration.py |
| index db9613b2eca0d71a9feaad870526b549f2b7f8be..b1eb2483fab46565a447f40ea2690fa9ab1e8f12 100644 |
| --- a/grit/format/policy_templates/writer_configuration.py |
| +++ b/grit/format/policy_templates/writer_configuration.py |
| @@ -26,6 +26,7 @@ def GetConfigurationForBuild(defines): |
| 'app_name': 'Chromium', |
| 'frame_name': 'Chromium Frame', |
| 'os_name': 'Chromium OS', |
| + 'webview_name': 'Chromium WebView', |
| 'win_reg_mandatory_key_name': 'Software\\Policies\\Chromium', |
| 'win_reg_recommended_key_name': |
| 'Software\\Policies\\Chromium\\Recommended', |
| @@ -41,6 +42,7 @@ def GetConfigurationForBuild(defines): |
| 'app_name': 'Google Chrome', |
| 'frame_name': 'Google Chrome Frame', |
| 'os_name': 'Google Chrome OS', |
| + 'webview_name': 'System WebView Google', |
|
Bernhard Bauer
2015/09/29 12:27:41
The official name (according to https://play.googl
dgn
2015/09/29 15:52:59
Done.
|
| 'win_reg_mandatory_key_name': 'Software\\Policies\\Google\\Chrome', |
| 'win_reg_recommended_key_name': |
| 'Software\\Policies\\Google\\Chrome\\Recommended', |
| @@ -58,4 +60,5 @@ def GetConfigurationForBuild(defines): |
| config['win_supported_os'] = 'SUPPORTED_WINXPSP2' |
| if 'mac_bundle_id' in defines: |
| config['mac_bundle_id'] = defines['mac_bundle_id'] |
| + config['android_webview_restriction_prefix'] = 'com.android.browser:' |
| return config |