| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |