diff options
author | yoshiki@chromium.org <yoshiki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-28 08:01:58 +0000 |
---|---|---|
committer | yoshiki@chromium.org <yoshiki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-28 08:01:58 +0000 |
commit | 1fd73bc81495dc2328c2e9df46104d538e7d4401 (patch) | |
tree | b1384a63ca220df38e3818b95f0ebaf62c08fe31 | |
parent | 86368aec2fb14d390cd056fe0b218b4f3f1c7643 (diff) | |
download | chromium_src-1fd73bc81495dc2328c2e9df46104d538e7d4401.zip chromium_src-1fd73bc81495dc2328c2e9df46104d538e7d4401.tar.gz chromium_src-1fd73bc81495dc2328c2e9df46104d538e7d4401.tar.bz2 |
Update the extension ID of TimeScape app in the whitelist to access local file
The extension ID of TimeScape app has been changed. This patch updates the ID in the whitelist to access restricted native local filesystem.
BUG=262265
TEST=tested manually
R=satorux@chromium.org
Review URL: https://codereview.chromium.org/23540003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@219957 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/chromeos/fileapi/file_system_backend.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/chromeos/fileapi/file_system_backend.cc b/chrome/browser/chromeos/fileapi/file_system_backend.cc index 43a62c1..fdb8a55 100644 --- a/chrome/browser/chromeos/fileapi/file_system_backend.cc +++ b/chrome/browser/chromeos/fileapi/file_system_backend.cc @@ -144,7 +144,7 @@ bool FileSystemBackend::IsAccessAllowed( std::string extension_id = origin_url.host(); // TODO(mtomasz): Temporarily whitelist TimeScapes. Remove this in M-31. // See: crbug.com/271946 - if (extension_id == "mppoamgbcpnkpacolchbacppkflagjbp" && + if (extension_id == "mlbmkoenclnokonejhlfakkeabdlmpek" && url.type() == fileapi::kFileSystemTypeRestrictedNativeLocal) { return true; } |