Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5568)

Unified Diff: chrome/browser/sync_file_system/drive_backend_v1/api_util.h

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698