diff options
Diffstat (limited to 'content/browser/file_system')
4 files changed, 7 insertions, 2 deletions
diff --git a/content/browser/file_system/browser_file_system_helper.cc b/content/browser/file_system/browser_file_system_helper.cc index 0d0c0218..4161cad 100644 --- a/content/browser/file_system/browser_file_system_helper.cc +++ b/content/browser/file_system/browser_file_system_helper.cc @@ -10,6 +10,8 @@ #include "content/public/common/content_switches.h" #include "webkit/quota/quota_manager.h" +using content::BrowserThread; + scoped_refptr<fileapi::FileSystemContext> CreateFileSystemContext( const FilePath& profile_path, bool is_incognito, quota::SpecialStoragePolicy* special_storage_policy, diff --git a/content/browser/file_system/file_system_browsertest.cc b/content/browser/file_system/file_system_browsertest.cc index 671d4fd..945cd33 100644 --- a/content/browser/file_system/file_system_browsertest.cc +++ b/content/browser/file_system/file_system_browsertest.cc @@ -15,6 +15,7 @@ #include "content/public/common/content_switches.h" #include "webkit/quota/quota_manager.h" +using content::BrowserThread; using quota::QuotaManager; // This browser test is aimed towards exercising the FileAPI bindings and diff --git a/content/browser/file_system/file_system_dispatcher_host.cc b/content/browser/file_system/file_system_dispatcher_host.cc index 92694a7..cf6b79f 100644 --- a/content/browser/file_system/file_system_dispatcher_host.cc +++ b/content/browser/file_system/file_system_dispatcher_host.cc @@ -23,6 +23,7 @@ #include "webkit/fileapi/file_system_quota_util.h" #include "webkit/fileapi/file_system_util.h" +using content::BrowserThread; using fileapi::FileSystemCallbackDispatcher; using fileapi::FileSystemFileUtil; using fileapi::FileSystemOperation; diff --git a/content/browser/file_system/file_system_dispatcher_host.h b/content/browser/file_system/file_system_dispatcher_host.h index 07a16e0..063fe77 100644 --- a/content/browser/file_system/file_system_dispatcher_host.h +++ b/content/browser/file_system/file_system_dispatcher_host.h @@ -45,8 +45,9 @@ class FileSystemDispatcherHost : public BrowserMessageFilter { // BrowserMessageFilter implementation. virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; - virtual void OverrideThreadForMessage(const IPC::Message& message, - BrowserThread::ID* thread) OVERRIDE; + virtual void OverrideThreadForMessage( + const IPC::Message& message, + content::BrowserThread::ID* thread) OVERRIDE; virtual bool OnMessageReceived(const IPC::Message& message, bool* message_was_ok) OVERRIDE; |