diff options
author | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-21 08:45:38 +0000 |
---|---|---|
committer | finnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-21 08:45:38 +0000 |
commit | 9e13a5735d7c831844641b92f5aa64469830bdc0 (patch) | |
tree | 2f594237fcd7240dbd56b3264ad5673a3865df3a /chrome/app/policy | |
parent | aa96d3a64972cdfe24bd6e9e4db64831ea131555 (diff) | |
download | chromium_src-9e13a5735d7c831844641b92f5aa64469830bdc0.zip chromium_src-9e13a5735d7c831844641b92f5aa64469830bdc0.tar.gz chromium_src-9e13a5735d7c831844641b92f5aa64469830bdc0.tar.bz2 |
Removing space from the VALUEPREFIX in the ADM/ADMX template.
It is causing the extension blacklist and whitelist to be not found.
BUG=47085
TEST=None
Review URL: http://codereview.chromium.org/3125030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56988 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/policy')
-rw-r--r-- | chrome/app/policy/windows/adm/en-US/chrome.adm | 4 | ||||
-rw-r--r-- | chrome/app/policy/windows/admx/chrome.admx | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/chrome/app/policy/windows/adm/en-US/chrome.adm b/chrome/app/policy/windows/adm/en-US/chrome.adm index 94d80b9..3d9ac57 100644 --- a/chrome/app/policy/windows/adm/en-US/chrome.adm +++ b/chrome/app/policy/windows/adm/en-US/chrome.adm @@ -167,7 +167,7 @@ CLASS MACHINE KEYNAME "Software\Policies\Google\Chrome\ExtensionInstallBlacklist"
PART !!ExtensionInstallBlacklistDesc LISTBOX
- VALUEPREFIX " "
+ VALUEPREFIX ""
END PART
END POLICY
@@ -179,7 +179,7 @@ CLASS MACHINE KEYNAME "Software\Policies\Google\Chrome\ExtensionInstallWhitelist"
PART !!ExtensionInstallWhitelistDesc LISTBOX
- VALUEPREFIX " "
+ VALUEPREFIX ""
END PART
END POLICY
diff --git a/chrome/app/policy/windows/admx/chrome.admx b/chrome/app/policy/windows/admx/chrome.admx index 5d1e0e5..a21099a 100644 --- a/chrome/app/policy/windows/admx/chrome.admx +++ b/chrome/app/policy/windows/admx/chrome.admx @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="utf-8"?>
<policyDefinitions revision="1.0" schemaVersion="1.0">
<policyNamespaces>
- <target prefix="fullarmor" namespace="FullArmor.f92fd19a-29d5-48fc-a383-f102e04485f4" />
+ <target prefix="fullarmor" namespace="FullArmor.1048238f-d493-4a5d-a728-16df06ed4ac5" />
<using prefix="windows" namespace="Microsoft.Policies.Windows" />
</policyNamespaces>
<supersededAdm fileName="D:\src\chromium\src\chrome\app\policy\windows\adm\en-US\chrome.adm" />
@@ -157,14 +157,14 @@ <parentCategory ref="googlechrome" />
<supportedOn ref="SUPPORTED_WINXPSP2" />
<elements>
- <list id="ExtensionInstallBlacklistDesc" valuePrefix=" " />
+ <list id="ExtensionInstallBlacklistDesc" valuePrefix="" />
</elements>
</policy>
<policy name="ExtensionInstallWhitelist" class="Machine" displayName="$(string.ExtensionInstallWhitelist)" explainText="$(string.ExtensionInstallWhitelist_Explain)" presentation="$(presentation.ExtensionInstallWhitelist)" key="Software\Policies\Google\Chrome\ExtensionInstallWhitelist">
<parentCategory ref="googlechrome" />
<supportedOn ref="SUPPORTED_WINXPSP2" />
<elements>
- <list id="ExtensionInstallWhitelistDesc" valuePrefix=" " />
+ <list id="ExtensionInstallWhitelistDesc" valuePrefix="" />
</elements>
</policy>
</policies>
|