| Index: chrome/browser/content_settings/tab_specific_content_settings.cc
|
| diff --git a/chrome/browser/content_settings/tab_specific_content_settings.cc b/chrome/browser/content_settings/tab_specific_content_settings.cc
|
| index 0aaf43d7f940d48aaa8d12b5ca6a10796028ca38..6b83c437277366acd73e0661edf58bbe95a0303b 100644
|
| --- a/chrome/browser/content_settings/tab_specific_content_settings.cc
|
| +++ b/chrome/browser/content_settings/tab_specific_content_settings.cc
|
| @@ -442,12 +442,12 @@ void TabSpecificContentSettings::OnFileSystemAccessed(
|
| const GURL& url,
|
| bool blocked_by_policy) {
|
| if (blocked_by_policy) {
|
| - blocked_local_shared_objects_.file_systems()->AddFileSystem(url,
|
| - fileapi::kFileSystemTypeTemporary, 0);
|
| + blocked_local_shared_objects_.file_systems()->AddFileSystem(
|
| + url, storage::kFileSystemTypeTemporary, 0);
|
| OnContentBlocked(CONTENT_SETTINGS_TYPE_COOKIES);
|
| } else {
|
| - allowed_local_shared_objects_.file_systems()->AddFileSystem(url,
|
| - fileapi::kFileSystemTypeTemporary, 0);
|
| + allowed_local_shared_objects_.file_systems()->AddFileSystem(
|
| + url, storage::kFileSystemTypeTemporary, 0);
|
| OnContentAllowed(CONTENT_SETTINGS_TYPE_COOKIES);
|
| }
|
|
|
|
|