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

Side by Side Diff: base/message_loop.h

Issue 8702019: Use callback_forward.h instead of callback.h where possible. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix include order. Created 9 years 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
« no previous file with comments | « base/callback_forward.h ('k') | base/message_loop_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef BASE_MESSAGE_LOOP_H_ 5 #ifndef BASE_MESSAGE_LOOP_H_
6 #define BASE_MESSAGE_LOOP_H_ 6 #define BASE_MESSAGE_LOOP_H_
7 #pragma once 7 #pragma once
8 8
9 #include <queue> 9 #include <queue>
10 #include <string> 10 #include <string>
11 11
12 #include "base/base_export.h" 12 #include "base/base_export.h"
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "base/callback.h" 14 #include "base/callback_forward.h"
15 #include "base/location.h" 15 #include "base/location.h"
16 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
17 #include "base/message_loop_proxy.h" 17 #include "base/message_loop_proxy.h"
18 #include "base/message_pump.h" 18 #include "base/message_pump.h"
19 #include "base/observer_list.h" 19 #include "base/observer_list.h"
20 #include "base/pending_task.h" 20 #include "base/pending_task.h"
21 #include "base/synchronization/lock.h" 21 #include "base/synchronization/lock.h"
22 #include "base/task.h" 22 #include "base/task.h"
23 #include "base/tracking_info.h" 23 #include "base/tracking_info.h"
24 #include "base/time.h" 24 #include "base/time.h"
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
666 #endif // defined(OS_POSIX) 666 #endif // defined(OS_POSIX)
667 }; 667 };
668 668
669 // Do not add any member variables to MessageLoopForIO! This is important b/c 669 // Do not add any member variables to MessageLoopForIO! This is important b/c
670 // MessageLoopForIO is often allocated via MessageLoop(TYPE_IO). Any extra 670 // MessageLoopForIO is often allocated via MessageLoop(TYPE_IO). Any extra
671 // data that you need should be stored on the MessageLoop's pump_ instance. 671 // data that you need should be stored on the MessageLoop's pump_ instance.
672 COMPILE_ASSERT(sizeof(MessageLoop) == sizeof(MessageLoopForIO), 672 COMPILE_ASSERT(sizeof(MessageLoop) == sizeof(MessageLoopForIO),
673 MessageLoopForIO_should_not_have_extra_member_variables); 673 MessageLoopForIO_should_not_have_extra_member_variables);
674 674
675 #endif // BASE_MESSAGE_LOOP_H_ 675 #endif // BASE_MESSAGE_LOOP_H_
OLDNEW
« no previous file with comments | « base/callback_forward.h ('k') | base/message_loop_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698