From 47163d4fffec1fd74423224a932034b82a50cc6b Mon Sep 17 00:00:00 2001 From: "thestig@chromium.org" Date: Thu, 16 May 2013 02:37:50 +0000 Subject: Cleanup: Remove unneeded base/file_util.h includes in chrome_frame, courgette, ipc, media, and net. Review URL: https://chromiumcodereview.appspot.com/14820034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@200419 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome_frame/chrome_frame_activex.cc | 5 ++--- chrome_frame/chrome_frame_automation.cc | 1 - chrome_frame/utils.cc | 1 - 3 files changed, 2 insertions(+), 5 deletions(-) (limited to 'chrome_frame') diff --git a/chrome_frame/chrome_frame_activex.cc b/chrome_frame/chrome_frame_activex.cc index 7262071..a0a2094 100644 --- a/chrome_frame/chrome_frame_activex.cc +++ b/chrome_frame/chrome_frame_activex.cc @@ -12,7 +12,6 @@ #include "base/basictypes.h" #include "base/command_line.h" #include "base/debug/trace_event.h" -#include "base/file_util.h" #include "base/logging.h" #include "base/memory/singleton.h" #include "base/path_service.h" @@ -76,7 +75,7 @@ class TopLevelWindowMapping { // messages on a top-level window, and passes notification to the appropriate // Chrome-Frame instances. LRESULT CALLBACK TopWindowProc(int code, WPARAM wparam, LPARAM lparam) { - CWPSTRUCT *info = reinterpret_cast(lparam); + CWPSTRUCT* info = reinterpret_cast(lparam); const UINT &message = info->message; const HWND &message_hwnd = info->hwnd; @@ -87,7 +86,7 @@ LRESULT CALLBACK TopWindowProc(int code, WPARAM wparam, LPARAM lparam) { TopLevelWindowMapping::GetInstance()->GetInstances(message_hwnd); TopLevelWindowMapping::WindowList::iterator iter(cf_instances.begin()), end(cf_instances.end()); - for (;iter != end; ++iter) { + for (; iter != end; ++iter) { PostMessage(*iter, WM_HOST_MOVED_NOTIFICATION, NULL, NULL); } break; diff --git a/chrome_frame/chrome_frame_automation.cc b/chrome_frame/chrome_frame_automation.cc index 3247343..6f1e7f0 100644 --- a/chrome_frame/chrome_frame_automation.cc +++ b/chrome_frame/chrome_frame_automation.cc @@ -10,7 +10,6 @@ #include "base/command_line.h" #include "base/compiler_specific.h" #include "base/debug/trace_event.h" -#include "base/file_util.h" #include "base/file_version_info.h" #include "base/lazy_instance.h" #include "base/logging.h" diff --git a/chrome_frame/utils.cc b/chrome_frame/utils.cc index e7865b7..d3aeea9 100644 --- a/chrome_frame/utils.cc +++ b/chrome_frame/utils.cc @@ -10,7 +10,6 @@ #include #include -#include "base/file_util.h" #include "base/file_version_info.h" #include "base/lazy_instance.h" #include "base/logging.h" -- cgit v1.1