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

Unified Diff: chrome/browser/extensions/api/image_writer_private/operation_linux.cc

Issue 102873002: Move GetFileSize, NormalizeFilePath to base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/extensions/api/image_writer_private/operation_linux.cc
diff --git a/chrome/browser/extensions/api/image_writer_private/operation_linux.cc b/chrome/browser/extensions/api/image_writer_private/operation_linux.cc
index 8250363a5488e1b2c0ea500b7640f8771d1c7df3..e54b5241ceba913bc194311d659830c42471d5fc 100644
--- a/chrome/browser/extensions/api/image_writer_private/operation_linux.cc
+++ b/chrome/browser/extensions/api/image_writer_private/operation_linux.cc
@@ -173,7 +173,7 @@ void Operation::VerifyWriteStage2(
int64 image_size;
scoped_ptr<base::FilePath> device_path(new base::FilePath(storage_unit_id_));
- if (!file_util::GetFileSize(image_path_, &image_size)){
+ if (!base::GetFileSize(image_path_, &image_size)){
Error(error::kImageSize);
return;
}
« no previous file with comments | « chrome/browser/drive/drive_uploader.cc ('k') | chrome/browser/extensions/api/media_galleries/media_galleries_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698