summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-01 20:19:53 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-01 20:19:53 +0000
commita5c0fd98173a9a4fc5674d44afc1594996fc05e0 (patch)
treeb8ca4d59fc1d4f71d0ed1c7182993ad6b4c4c08b /base
parent7fb356f9b1f572a2f291a694c43de05c3ef8f3de (diff)
downloadchromium_src-a5c0fd98173a9a4fc5674d44afc1594996fc05e0.zip
chromium_src-a5c0fd98173a9a4fc5674d44afc1594996fc05e0.tar.gz
chromium_src-a5c0fd98173a9a4fc5674d44afc1594996fc05e0.tar.bz2
Remove use of <iostream> where unnecessary.
Any file which uses <iostream> gains a static initializer, which is both disallowed by our style guide and also harms startup performance. Note that Chrome's logging.h uses <ostream> (note missing "i"), which includes the << operators for logging but does *not* use cin/cout. This is fine. BUG=94794 Review URL: http://codereview.chromium.org/7811002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99237 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/debug/debugger_posix.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/debug/debugger_posix.cc b/base/debug/debugger_posix.cc
index b3c9bc8..089d53d 100644
--- a/base/debug/debugger_posix.cc
+++ b/base/debug/debugger_posix.cc
@@ -30,7 +30,7 @@
#include <sys/sysctl.h>
#endif
-#include <iostream>
+#include <ostream>
#include "base/basictypes.h"
#include "base/eintr_wrapper.h"