Index: content/browser/renderer_host/pepper/quota_reservation.cc |
diff --git a/content/browser/renderer_host/pepper/quota_reservation.cc b/content/browser/renderer_host/pepper/quota_reservation.cc |
index dc6806d5b31c80ff32f999817fb38dc05a3876bb..bff9254940c560458dec0d1e0e8b2dea19a85713 100644 |
--- a/content/browser/renderer_host/pepper/quota_reservation.cc |
+++ b/content/browser/renderer_host/pepper/quota_reservation.cc |
@@ -53,10 +53,10 @@ int64_t QuotaReservation::OpenFile(int32_t id, |
const fileapi::FileSystemURL& url) { |
base::FilePath platform_file_path; |
if (file_system_context_) { |
- base::PlatformFileError error = |
+ base::File::Error error = |
file_system_context_->operation_runner()->SyncGetPlatformPath( |
url, &platform_file_path); |
- if (error != base::PLATFORM_FILE_OK) { |
+ if (error != base::File::FILE_OK) { |
NOTREACHED(); |
return 0; |
} |
@@ -115,7 +115,7 @@ void QuotaReservation::OnClientCrash() { |
void QuotaReservation::GotReservedQuota( |
const ReserveQuotaCallback& callback, |
- base::PlatformFileError error) { |
+ base::File::Error error) { |
OffsetMap max_written_offsets; |
for (FileMap::iterator it = files_.begin(); it != files_.end(); ++ it) { |
max_written_offsets.insert( |