diff options
author | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-09 01:22:32 +0000 |
---|---|---|
committer | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-09 01:22:32 +0000 |
commit | f19bbf6c744effbec923b99f0bf99bc3fc13e3ff (patch) | |
tree | b20155f7dc0dd550c234229f1af615902c0a278e /chrome/browser/chromeos/drive/file_system_util_unittest.cc | |
parent | 814de9746a16fe9ce661bc140e238643b8e0bdc2 (diff) | |
download | chromium_src-f19bbf6c744effbec923b99f0bf99bc3fc13e3ff.zip chromium_src-f19bbf6c744effbec923b99f0bf99bc3fc13e3ff.tar.gz chromium_src-f19bbf6c744effbec923b99f0bf99bc3fc13e3ff.tar.bz2 |
fileapi: Rename FileSystemMountProvider to FileSystemBackend
The old name is a misnomer as this class no longer provides mount points!
Per some discussion, FileSystemBackend matches what the class is currently
doing and trying to be.
BUG=257016
TEST=none
TBR=hidehiko@chromium.org, joi@chromium.org, kinuko@chromium.org, vandebo@chromium.org
# for one-line #include renames in
chrome/browser/browsing_data/browsing_data_file_system_helper.cc
chrome/browser/extensions/component_loader.cc
chrome/browser/extensions/extension_service.cc
Review URL: https://codereview.chromium.org/18344013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@210480 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos/drive/file_system_util_unittest.cc')
-rw-r--r-- | chrome/browser/chromeos/drive/file_system_util_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/drive/file_system_util_unittest.cc b/chrome/browser/chromeos/drive/file_system_util_unittest.cc index db0f346..513eaa6 100644 --- a/chrome/browser/chromeos/drive/file_system_util_unittest.cc +++ b/chrome/browser/chromeos/drive/file_system_util_unittest.cc @@ -14,8 +14,8 @@ #include "chrome/test/base/testing_profile.h" #include "testing/gtest/include/gtest/gtest.h" #include "webkit/browser/fileapi/external_mount_points.h" +#include "webkit/browser/fileapi/file_system_backend.h" #include "webkit/browser/fileapi/file_system_context.h" -#include "webkit/browser/fileapi/file_system_mount_point_provider.h" #include "webkit/browser/fileapi/file_system_task_runners.h" #include "webkit/browser/fileapi/file_system_url.h" #include "webkit/browser/fileapi/isolated_context.h" @@ -103,7 +103,7 @@ TEST(FileSystemUtilTest, ExtractDrivePathFromFileSystemUrl) { mount_points.get(), NULL, // special_storage_policy NULL, // quota_manager_proxy, - ScopedVector<fileapi::FileSystemMountPointProvider>(), + ScopedVector<fileapi::FileSystemBackend>(), temp_dir_.path(), // partition_path fileapi::CreateAllowFileAccessOptions())); |