| Index: chrome/browser/sync_file_system/drive_backend_v1/api_util.h
|
| diff --git a/chrome/browser/sync_file_system/drive_backend_v1/api_util.h b/chrome/browser/sync_file_system/drive_backend_v1/api_util.h
|
| index 052d82d0a45ad09f7fb5cc7e2460e561500bd2cb..46e0fd05a4d1c2a862e65149e74f716140315046 100644
|
| --- a/chrome/browser/sync_file_system/drive_backend_v1/api_util.h
|
| +++ b/chrome/browser/sync_file_system/drive_backend_v1/api_util.h
|
| @@ -13,7 +13,7 @@
|
| #include "chrome/browser/drive/drive_service_interface.h"
|
| #include "chrome/browser/sync_file_system/drive_backend_v1/api_util_interface.h"
|
| #include "net/base/network_change_notifier.h"
|
| -#include "webkit/common/blob/scoped_file.h"
|
| +#include "storage/common/blob/scoped_file.h"
|
|
|
| class GURL;
|
| class Profile;
|
| @@ -173,18 +173,18 @@ class APIUtil : public APIUtilInterface,
|
| void DidGetTemporaryFileForDownload(
|
| const std::string& resource_id,
|
| const std::string& local_file_md5,
|
| - scoped_ptr<webkit_blob::ScopedFile> local_file,
|
| + scoped_ptr<storage::ScopedFile> local_file,
|
| const DownloadFileCallback& callback,
|
| bool success);
|
|
|
| void DownloadFileInternal(const std::string& local_file_md5,
|
| - scoped_ptr<webkit_blob::ScopedFile> local_file,
|
| + scoped_ptr<storage::ScopedFile> local_file,
|
| const DownloadFileCallback& callback,
|
| google_apis::GDataErrorCode error,
|
| scoped_ptr<google_apis::ResourceEntry> entry);
|
|
|
| void DidDownloadFile(scoped_ptr<google_apis::ResourceEntry> entry,
|
| - scoped_ptr<webkit_blob::ScopedFile> local_file,
|
| + scoped_ptr<storage::ScopedFile> local_file,
|
| const DownloadFileCallback& callback,
|
| google_apis::GDataErrorCode error,
|
| const base::FilePath& downloaded_file_path);
|
|
|