Cleanup: Remove unneeded base/file_util.h includes in chrome.

Review URL: https://chromiumcodereview.appspot.com/15030005

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@200118 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/metrics/metrics_log.cc b/chrome/browser/metrics/metrics_log.cc
index de8d34d..998d180 100644
--- a/chrome/browser/metrics/metrics_log.cc
+++ b/chrome/browser/metrics/metrics_log.cc
@@ -10,7 +10,6 @@
 
 #include "base/basictypes.h"
 #include "base/bind.h"
-#include "base/file_util.h"
 #include "base/lazy_instance.h"
 #include "base/memory/scoped_ptr.h"
 #include "base/perftimer.h"
@@ -272,7 +271,7 @@
 #endif
 
 #if defined(OS_WIN)
-struct ScreenDPIInformation{
+struct ScreenDPIInformation {
   double max_dpi_x;
   double max_dpi_y;
 };
@@ -299,7 +298,7 @@
 void WriteScreenDPIInformationProto(SystemProfileProto::Hardware* hardware) {
   HDC desktop_dc = GetDC(NULL);
   if (desktop_dc) {
-    ScreenDPIInformation si = {0,0};
+    ScreenDPIInformation si = {0, 0};
     if (EnumDisplayMonitors(desktop_dc, NULL, GetMonitorDPICallback,
             reinterpret_cast<LPARAM>(&si))) {
       hardware->set_max_dpi_x(si.max_dpi_x);