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

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

Issue 19569006: Use a direct include of the message_loop header in chrome/test/, chrome/tools/, chrome/utility/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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) 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/containers/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/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/strings/string_number_conversions.h" 17 #include "base/strings/string_number_conversions.h"
18 #include "base/strings/string_util.h" 18 #include "base/strings/string_util.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/time.h" 21 #include "base/time/time.h"
22 #include "chrome/common/all_messages.h" 22 #include "chrome/common/all_messages.h"
23 #include "content/common/all_messages.h" 23 #include "content/common/all_messages.h"
24 #include "ipc/ipc_message.h" 24 #include "ipc/ipc_message.h"
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « chrome/test/ui/ui_test.h ('k') | chrome/tools/service_discovery_sniffer/service_discovery_sniffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698