| Index: chrome/browser/profile.cc
|
| ===================================================================
|
| --- chrome/browser/profile.cc (revision 57717)
|
| +++ chrome/browser/profile.cc (working copy)
|
| @@ -17,7 +17,6 @@
|
| #include "chrome/browser/chrome_blob_storage_context.h"
|
| #include "chrome/browser/chrome_thread.h"
|
| #include "chrome/browser/download/download_manager.h"
|
| -#include "chrome/browser/file_system/file_system_host_context.h"
|
| #include "chrome/browser/find_bar_state.h"
|
| #include "chrome/browser/in_process_webkit/webkit_context.h"
|
| #include "chrome/browser/net/chrome_url_request_context.h"
|
| @@ -315,14 +314,6 @@
|
| return NULL;
|
| }
|
|
|
| - virtual FileSystemHostContext* GetFileSystemHostContext() {
|
| - if (!file_system_host_context_)
|
| - file_system_host_context_ = new FileSystemHostContext(
|
| - GetPath(), IsOffTheRecord());
|
| - DCHECK(file_system_host_context_.get());
|
| - return file_system_host_context_.get();
|
| - }
|
| -
|
| virtual void InitThemes() {
|
| profile_->InitThemes();
|
| }
|
| @@ -590,9 +581,6 @@
|
|
|
| scoped_refptr<ChromeBlobStorageContext> blob_storage_context_;
|
|
|
| - // The file_system context for this profile.
|
| - scoped_refptr<FileSystemHostContext> file_system_host_context_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl);
|
| };
|
|
|
|
|