| Index: webkit/fileapi/local_file_util.cc
|
| diff --git a/webkit/fileapi/local_file_util.cc b/webkit/fileapi/local_file_util.cc
|
| index 57454ebb426da21d6bb96eeb58f8ef0c76243e7f..b7b9382084d452c8b2a323ab9c4b8c95d373dea9 100644
|
| --- a/webkit/fileapi/local_file_util.cc
|
| +++ b/webkit/fileapi/local_file_util.cc
|
| @@ -13,6 +13,7 @@
|
| #include "webkit/fileapi/file_system_url.h"
|
| #include "webkit/fileapi/file_system_util.h"
|
| #include "webkit/fileapi/native_file_util.h"
|
| +#include <fstream>
|
|
|
| namespace fileapi {
|
|
|
| @@ -250,6 +251,9 @@ base::PlatformFileError LocalFileUtil::CreateSnapshotFile(
|
| base::PlatformFileInfo* file_info,
|
| base::FilePath* platform_path,
|
| SnapshotFilePolicy* policy) {
|
| + LOG(WARNING) << "LocalFileUtil::CreateSnapshotFile";
|
| + std::ofstream mylog("/tmp/krblog", std::ios::app);
|
| + mylog << "LocalFileUtil::CreateSnapshotFile" << std::endl;;
|
| DCHECK(policy);
|
| DCHECK(file_info);
|
| // We're just returning the local file information.
|
|
|