Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: chrome/tools/ipclist/ipcfuzz.cc

Issue 7811002: Remove use of <iostream> where unnecessary. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <algorithm> 5 #include <algorithm>
6 #include <iostream> 6 #include <ostream>
7 #include <set> 7 #include <set>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/hash_tables.h" 11 #include "base/hash_tables.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/memory/singleton.h" 13 #include "base/memory/singleton.h"
14 #include "base/message_loop.h" 14 #include "base/message_loop.h"
15 #include "base/pickle.h" 15 #include "base/pickle.h"
16 #include "base/process_util.h" 16 #include "base/process_util.h"
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
677 677
678 // Entry point avoiding mangled names. 678 // Entry point avoiding mangled names.
679 extern "C" { 679 extern "C" {
680 __attribute__((visibility("default"))) 680 __attribute__((visibility("default")))
681 IPC::ChannelProxy::OutgoingMessageFilter* GetFilter(void); 681 IPC::ChannelProxy::OutgoingMessageFilter* GetFilter(void);
682 } 682 }
683 683
684 IPC::ChannelProxy::OutgoingMessageFilter* GetFilter(void) { 684 IPC::ChannelProxy::OutgoingMessageFilter* GetFilter(void) {
685 return &g_ipcfuzz; 685 return &g_ipcfuzz;
686 } 686 }
OLDNEW
« no previous file with comments | « chrome/browser/intents/web_intent_data.cc ('k') | chrome_frame/test/reliability/page_load_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698