| Index: webkit/fileapi/local_file_stream_writer.h
|
| diff --git a/webkit/fileapi/local_file_stream_writer.h b/webkit/fileapi/local_file_stream_writer.h
|
| index e23b476b71fb8c5b56cac1c4c35d3704bdabca7a..a6d15f930ca50137ad56ed3b974a461eec5768c2 100644
|
| --- a/webkit/fileapi/local_file_stream_writer.h
|
| +++ b/webkit/fileapi/local_file_stream_writer.h
|
| @@ -28,7 +28,7 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE LocalFileStreamWriter
|
| public:
|
| // Create a writer for the existing file in the path |file_path| starting from
|
| // |initial_offset|.
|
| - LocalFileStreamWriter(const FilePath& file_path, int64 initial_offset);
|
| + LocalFileStreamWriter(const base::FilePath& file_path, int64 initial_offset);
|
| virtual ~LocalFileStreamWriter();
|
|
|
| // FileStreamWriter overrides.
|
| @@ -72,7 +72,7 @@ class WEBKIT_STORAGE_EXPORT_PRIVATE LocalFileStreamWriter
|
| bool CancelIfRequested();
|
|
|
| // Initialization parameters.
|
| - const FilePath file_path_;
|
| + const base::FilePath file_path_;
|
| const int64 initial_offset_;
|
|
|
| // Current states of the operation.
|
|
|