diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-14 05:15:53 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-14 05:15:53 +0000 |
commit | 397281fdb6003ab5b86ead542a46e3d82aa2be1f (patch) | |
tree | 6d7a2d27edfb8b3790dd4a199d2e32283206fcce /chrome/test | |
parent | c10878accf5f6c12c471d77d20b32ef3e84f5693 (diff) | |
download | chromium_src-397281fdb6003ab5b86ead542a46e3d82aa2be1f.zip chromium_src-397281fdb6003ab5b86ead542a46e3d82aa2be1f.tar.gz chromium_src-397281fdb6003ab5b86ead542a46e3d82aa2be1f.tar.bz2 |
Cleanup SandboxedFileSystem* and merge them into FileSystem* for simplicity.
Based on our rough discussion over emails, I just went ahead and did the cleanup.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6471018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74786 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/testing_profile.cc | 2 | ||||
-rw-r--r-- | chrome/test/testing_profile.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/testing_profile.cc b/chrome/test/testing_profile.cc index 6cfec31..285338f 100644 --- a/chrome/test/testing_profile.cc +++ b/chrome/test/testing_profile.cc @@ -531,7 +531,7 @@ PersonalDataManager* TestingProfile::GetPersonalDataManager() { return NULL; } -fileapi::SandboxedFileSystemContext* TestingProfile::GetFileSystemContext() { +fileapi::FileSystemContext* TestingProfile::GetFileSystemContext() { return NULL; } diff --git a/chrome/test/testing_profile.h b/chrome/test/testing_profile.h index c32b44e..f7c3efa 100644 --- a/chrome/test/testing_profile.h +++ b/chrome/test/testing_profile.h @@ -175,7 +175,7 @@ class TestingProfile : public Profile { virtual history::TopSites* GetTopSitesWithoutCreating(); virtual DownloadManager* GetDownloadManager(); virtual PersonalDataManager* GetPersonalDataManager(); - virtual fileapi::SandboxedFileSystemContext* GetFileSystemContext(); + virtual fileapi::FileSystemContext* GetFileSystemContext(); virtual BrowserSignin* GetBrowserSignin(); virtual bool HasCreatedDownloadManager() const; virtual void InitThemes(); |