| 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 #ifndef BASE_MESSAGE_LOOP_H_ | 5 #ifndef BASE_MESSAGE_LOOP_H_ |
| 6 #define BASE_MESSAGE_LOOP_H_ | 6 #define BASE_MESSAGE_LOOP_H_ |
| 7 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/base_export.h" | 11 #include "base/base_export.h" |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
| 14 #include "base/location.h" | 14 #include "base/location.h" |
| 15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
| 16 #include "base/message_loop_proxy.h" | 16 #include "base/message_loop/message_loop_proxy.h" |
| 17 #include "base/message_pump.h" | 17 #include "base/message_pump.h" |
| 18 #include "base/observer_list.h" | 18 #include "base/observer_list.h" |
| 19 #include "base/pending_task.h" | 19 #include "base/pending_task.h" |
| 20 #include "base/sequenced_task_runner_helpers.h" | 20 #include "base/sequenced_task_runner_helpers.h" |
| 21 #include "base/synchronization/lock.h" | 21 #include "base/synchronization/lock.h" |
| 22 #include "base/tracking_info.h" | 22 #include "base/tracking_info.h" |
| 23 #include "base/time.h" | 23 #include "base/time.h" |
| 24 | 24 |
| 25 #if defined(OS_WIN) | 25 #if defined(OS_WIN) |
| 26 // We need this to declare base::MessagePumpWin::Dispatcher, which we should | 26 // We need this to declare base::MessagePumpWin::Dispatcher, which we should |
| (...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 | 724 |
| 725 // Do not add any member variables to MessageLoopForIO! This is important b/c | 725 // Do not add any member variables to MessageLoopForIO! This is important b/c |
| 726 // MessageLoopForIO is often allocated via MessageLoop(TYPE_IO). Any extra | 726 // MessageLoopForIO is often allocated via MessageLoop(TYPE_IO). Any extra |
| 727 // data that you need should be stored on the MessageLoop's pump_ instance. | 727 // data that you need should be stored on the MessageLoop's pump_ instance. |
| 728 COMPILE_ASSERT(sizeof(MessageLoop) == sizeof(MessageLoopForIO), | 728 COMPILE_ASSERT(sizeof(MessageLoop) == sizeof(MessageLoopForIO), |
| 729 MessageLoopForIO_should_not_have_extra_member_variables); | 729 MessageLoopForIO_should_not_have_extra_member_variables); |
| 730 | 730 |
| 731 } // namespace base | 731 } // namespace base |
| 732 | 732 |
| 733 #endif // BASE_MESSAGE_LOOP_H_ | 733 #endif // BASE_MESSAGE_LOOP_H_ |
| OLD | NEW |