| Index: webkit/tools/test_shell/simple_file_system.cc
|
| diff --git a/webkit/tools/test_shell/simple_file_system.cc b/webkit/tools/test_shell/simple_file_system.cc
|
| index f66554137d1667b32b07e59bf8925a131b15f0c9..87aabf448d45057ccc0835938a516e4282563538 100644
|
| --- a/webkit/tools/test_shell/simple_file_system.cc
|
| +++ b/webkit/tools/test_shell/simple_file_system.cc
|
| @@ -54,10 +54,10 @@ namespace {
|
| MessageLoop* g_io_thread;
|
| webkit_blob::BlobStorageController* g_blob_storage_controller;
|
|
|
| -void RegisterBlob(const GURL& blob_url, const FilePath& file_path) {
|
| +void RegisterBlob(const GURL& blob_url, const base::FilePath& file_path) {
|
| DCHECK(g_blob_storage_controller);
|
|
|
| - FilePath::StringType extension = file_path.Extension();
|
| + base::FilePath::StringType extension = file_path.Extension();
|
| if (!extension.empty())
|
| extension = extension.substr(1); // Strip leading ".".
|
|
|
| @@ -324,7 +324,7 @@ void SimpleFileSystem::DidFinish(WebFileSystemCallbacks* callbacks,
|
| void SimpleFileSystem::DidGetMetadata(WebFileSystemCallbacks* callbacks,
|
| base::PlatformFileError result,
|
| const base::PlatformFileInfo& info,
|
| - const FilePath& platform_path) {
|
| + const base::FilePath& platform_path) {
|
| if (result == base::PLATFORM_FILE_OK) {
|
| WebFileInfo web_file_info;
|
| web_file_info.length = info.size;
|
| @@ -388,7 +388,7 @@ void SimpleFileSystem::DidCreateSnapshotFile(
|
| WebFileSystemCallbacks* callbacks,
|
| base::PlatformFileError result,
|
| const base::PlatformFileInfo& info,
|
| - const FilePath& platform_path,
|
| + const base::FilePath& platform_path,
|
| const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref) {
|
| DCHECK(g_io_thread);
|
| if (result == base::PLATFORM_FILE_OK) {
|
|
|