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

Unified Diff: cloud_print/virtual_driver/win/port_monitor/port_monitor.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: cloud_print/virtual_driver/win/port_monitor/port_monitor.cc
diff --git a/cloud_print/virtual_driver/win/port_monitor/port_monitor.cc b/cloud_print/virtual_driver/win/port_monitor/port_monitor.cc
index 4432404713cc4170ac12831da1f2cae70550b66b..a68c29efaf1e7448ab4c91d6d3a4bb7c711599c2 100644
--- a/cloud_print/virtual_driver/win/port_monitor/port_monitor.cc
+++ b/cloud_print/virtual_driver/win/port_monitor/port_monitor.cc
@@ -482,7 +482,7 @@ BOOL WINAPI Monitor2EndDocPort(HANDLE port_handle) {
port_data->file = NULL;
bool delete_file = true;
int64 file_size = 0;
- file_util::GetFileSize(port_data->file_path, &file_size);
+ base::GetFileSize(port_data->file_path, &file_size);
if (file_size > 0) {
string16 job_title;
if (port_data->printer_handle != NULL) {
« no previous file with comments | « chrome_frame/test/perf/chrome_frame_perftest.cc ('k') | components/breakpad/browser/crash_dump_manager_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698