| 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 735366456ba994d594c1ae5830315377c62cac6a..9eec9556340ed51e1c695838df870f127c567305 100644
|
| --- a/chrome/browser/content_settings/tab_specific_content_settings.cc
|
| +++ b/chrome/browser/content_settings/tab_specific_content_settings.cc
|
| @@ -34,7 +34,7 @@
|
| #include "content/public/browser/web_contents.h"
|
| #include "content/public/browser/web_contents_delegate.h"
|
| #include "net/cookies/canonical_cookie.h"
|
| -#include "webkit/common/fileapi/file_system_types.h"
|
| +#include "storage/common/fileapi/file_system_types.h"
|
|
|
| using content::BrowserThread;
|
| using content::NavigationController;
|
| @@ -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);
|
| }
|
|
|
|
|