diff options
author | bauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-23 17:10:42 +0000 |
---|---|---|
committer | bauerb@chromium.org <bauerb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-23 17:10:42 +0000 |
commit | 3e31a0ada9e03e67f8a6fc74e6e750fe4fc61013 (patch) | |
tree | 0fba63f95cfe2d3cb20dbf5ec9156e6f223e66dc /chrome/browser/browser_resources.grd | |
parent | eec23bcdb7ac703c4c32f059b5871361f2bdd5e6 (diff) | |
download | chromium_src-3e31a0ada9e03e67f8a6fc74e6e750fe4fc61013.zip chromium_src-3e31a0ada9e03e67f8a6fc74e6e750fe4fc61013.tar.gz chromium_src-3e31a0ada9e03e67f8a6fc74e6e750fe4fc61013.tar.bz2 |
Move version metadata from PluginGroup into PluginInstaller.
This also moves the plug-in information JSON files into their own subdirectory, so they can be changed without requiring OWNERS reviews for chrome/browser/resources (which is mostly WebUI otherwise).
BUG=124396
TEST=PluginInstallerTest.SecurityStatus:PluginFinderTest.JsonSyntax
Review URL: https://chromiumcodereview.appspot.com/10263022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138502 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_resources.grd')
-rw-r--r-- | chrome/browser/browser_resources.grd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/browser_resources.grd b/chrome/browser/browser_resources.grd index 28a9d02..9c24f53 100644 --- a/chrome/browser/browser_resources.grd +++ b/chrome/browser/browser_resources.grd @@ -90,13 +90,13 @@ <include name="IDR_PLUGINS_HTML" file="resources\plugins.html" flattenhtml="true" allowexternalscript="true" type="BINDATA" /> <include name="IDR_PLUGINS_JS" file="resources\plugins.js" type="BINDATA" /> <if expr="is_win"> - <include name="IDR_PLUGIN_DB_JSON" file="resources\plugins_win.json" type="BINDATA" /> + <include name="IDR_PLUGIN_DB_JSON" file="resources\plugin_metadata\plugins_win.json" type="BINDATA" /> </if> <if expr="is_macosx"> - <include name="IDR_PLUGIN_DB_JSON" file="resources\plugins_mac.json" type="BINDATA" /> + <include name="IDR_PLUGIN_DB_JSON" file="resources\plugin_metadata\plugins_mac.json" type="BINDATA" /> </if> <if expr="is_linux"> - <include name="IDR_PLUGIN_DB_JSON" file="resources\plugins_linux.json" type="BINDATA" /> + <include name="IDR_PLUGIN_DB_JSON" file="resources\plugin_metadata\plugins_linux.json" type="BINDATA" /> </if> <include name="IDR_POLICY_CSS" file="resources\policy.css" type="BINDATA"/> <include name="IDR_POLICY_HTML" file="resources\policy.html" flattenhtml="true" allowexternalscript="true" type="BINDATA"/> |