OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <ostream> | 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/containers/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" |
17 #include "base/string_util.h" | 17 #include "base/string_util.h" |
18 #include "base/strings/string_number_conversions.h" | 18 #include "base/strings/string_number_conversions.h" |
19 #include "base/strings/utf_string_conversions.h" | 19 #include "base/strings/utf_string_conversions.h" |
20 #include "base/threading/thread.h" | 20 #include "base/threading/thread.h" |
21 #include "base/time.h" | 21 #include "base/time.h" |
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
682 | 682 |
683 // Entry point avoiding mangled names. | 683 // Entry point avoiding mangled names. |
684 extern "C" { | 684 extern "C" { |
685 __attribute__((visibility("default"))) | 685 __attribute__((visibility("default"))) |
686 IPC::ChannelProxy::OutgoingMessageFilter* GetFilter(void); | 686 IPC::ChannelProxy::OutgoingMessageFilter* GetFilter(void); |
687 } | 687 } |
688 | 688 |
689 IPC::ChannelProxy::OutgoingMessageFilter* GetFilter(void) { | 689 IPC::ChannelProxy::OutgoingMessageFilter* GetFilter(void) { |
690 return &g_ipcfuzz; | 690 return &g_ipcfuzz; |
691 } | 691 } |
OLD | NEW |