summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-20 20:08:23 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-20 20:08:23 +0000
commitf3b1afd587e13f4d67288806ed4f07fc8a14ed5f (patch)
treeb5f2071627e5825bf3e12cb7284051cc33767e7a /ipc
parente52162ef0805fa045fb4e7be19d0ed49a0258173 (diff)
downloadchromium_src-f3b1afd587e13f4d67288806ed4f07fc8a14ed5f.zip
chromium_src-f3b1afd587e13f4d67288806ed4f07fc8a14ed5f.tar.gz
chromium_src-f3b1afd587e13f4d67288806ed4f07fc8a14ed5f.tar.bz2
Remove <iostream> where possible.
<iostream> creates a static initializer. Most people don't need <iostream> anyway--they really need <ostream> for operator<< overloads. <iostream> should *never* be included in a header file; <iosfwd> exists for that purpose. BUG=none TEST=none Review URL: http://codereview.chromium.org/3014015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53083 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r--ipc/ipc_fuzzing_tests.cc1
-rw-r--r--ipc/ipc_tests.cc1
-rw-r--r--ipc/sync_socket_unittest.cc1
3 files changed, 0 insertions, 3 deletions
diff --git a/ipc/ipc_fuzzing_tests.cc b/ipc/ipc_fuzzing_tests.cc
index 951ccbb..37451f4b 100644
--- a/ipc/ipc_fuzzing_tests.cc
+++ b/ipc/ipc_fuzzing_tests.cc
@@ -3,7 +3,6 @@
// found in the LICENSE file.
#include <stdio.h>
-#include <iostream>
#include <string>
#include <sstream>
diff --git a/ipc/ipc_tests.cc b/ipc/ipc_tests.cc
index a7546c3..f17fc18 100644
--- a/ipc/ipc_tests.cc
+++ b/ipc/ipc_tests.cc
@@ -12,7 +12,6 @@
#endif
#include <stdio.h>
-#include <iostream>
#include <string>
#include "ipc/ipc_tests.h"
diff --git a/ipc/sync_socket_unittest.cc b/ipc/sync_socket_unittest.cc
index e07fdf9..8681eb7 100644
--- a/ipc/sync_socket_unittest.cc
+++ b/ipc/sync_socket_unittest.cc
@@ -3,7 +3,6 @@
// found in the LICENSE file.
#include <stdio.h>
-#include <iostream>
#include <string>
#include <sstream>