summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_system_path.cc
diff options
context:
space:
mode:
authorkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-27 22:28:49 +0000
committerkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-27 22:28:49 +0000
commit45ea0fbbb18f26d72bffbdedb8200a60177e9534 (patch)
tree004479f634e63a3dd547af7ce81edc438a15482e /webkit/fileapi/file_system_path.cc
parent142dd7564146e19d03fa4a947f9eefeda769727f (diff)
downloadchromium_src-45ea0fbbb18f26d72bffbdedb8200a60177e9534.zip
chromium_src-45ea0fbbb18f26d72bffbdedb8200a60177e9534.tar.gz
chromium_src-45ea0fbbb18f26d72bffbdedb8200a60177e9534.tar.bz2
Introduce CrossFileUtilHelper for cross-FileUtil Copy/Move
BUG=114732, 110121 TEST=existing tests Review URL: https://chromiumcodereview.appspot.com/9427004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123815 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_system_path.cc')
-rw-r--r--webkit/fileapi/file_system_path.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/webkit/fileapi/file_system_path.cc b/webkit/fileapi/file_system_path.cc
index ed2d89d..8dff348 100644
--- a/webkit/fileapi/file_system_path.cc
+++ b/webkit/fileapi/file_system_path.cc
@@ -9,18 +9,15 @@
namespace fileapi {
FileSystemPath::FileSystemPath()
- : type_(kFileSystemTypeUnknown),
- file_util_(NULL) {}
+ : type_(kFileSystemTypeUnknown) {}
FileSystemPath::FileSystemPath(
const GURL& origin,
FileSystemType type,
- const FilePath& internal_path,
- FileSystemFileUtil* file_util)
+ const FilePath& internal_path)
: origin_(origin),
type_(type),
- internal_path_(internal_path),
- file_util_(file_util) {}
+ internal_path_(internal_path) {}
FileSystemPath::~FileSystemPath() {}