summaryrefslogtreecommitdiffstats
path: root/chrome_frame
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-16 02:37:50 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-16 02:37:50 +0000
commit47163d4fffec1fd74423224a932034b82a50cc6b (patch)
tree58b2c366a6b56bc0afdfa3fc732a39544dc14030 /chrome_frame
parent000f3ad7aa28a4eb012f4c1312666c8b3df6fc26 (diff)
downloadchromium_src-47163d4fffec1fd74423224a932034b82a50cc6b.zip
chromium_src-47163d4fffec1fd74423224a932034b82a50cc6b.tar.gz
chromium_src-47163d4fffec1fd74423224a932034b82a50cc6b.tar.bz2
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
Diffstat (limited to 'chrome_frame')
-rw-r--r--chrome_frame/chrome_frame_activex.cc5
-rw-r--r--chrome_frame/chrome_frame_automation.cc1
-rw-r--r--chrome_frame/utils.cc1
3 files changed, 2 insertions, 5 deletions
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<CWPSTRUCT*>(lparam);
+ CWPSTRUCT* info = reinterpret_cast<CWPSTRUCT*>(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 <mshtml.h>
#include <shlobj.h>
-#include "base/file_util.h"
#include "base/file_version_info.h"
#include "base/lazy_instance.h"
#include "base/logging.h"