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

Side by Side Diff: trunk/src/base/message_loop.h

Issue 14985007: Revert 198844 "Move sequenced_task_runner to base/task" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 7 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 #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_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/synchronization/lock.h" 21 #include "base/synchronization/lock.h"
21 #include "base/task/sequenced_task_runner_helpers.h" 22 #include "base/tracking_info.h"
22 #include "base/time.h" 23 #include "base/time.h"
23 #include "base/tracking_info.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
27 // really just eliminate. 27 // really just eliminate.
28 #include "base/message_pump_win.h" 28 #include "base/message_pump_win.h"
29 #elif defined(OS_IOS) 29 #elif defined(OS_IOS)
30 #include "base/message_pump_io_ios.h" 30 #include "base/message_pump_io_ios.h"
31 #elif defined(OS_POSIX) 31 #elif defined(OS_POSIX)
32 #include "base/message_pump_libevent.h" 32 #include "base/message_pump_libevent.h"
33 #if !defined(OS_MACOSX) && !defined(OS_ANDROID) 33 #if !defined(OS_MACOSX) && !defined(OS_ANDROID)
(...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
730 730
731 } // namespace base 731 } // namespace base
732 732
733 // TODO(brettw) remove this when all users are updated to explicitly use the 733 // TODO(brettw) remove this when all users are updated to explicitly use the
734 // namespace 734 // namespace
735 using base::MessageLoop; 735 using base::MessageLoop;
736 using base::MessageLoopForIO; 736 using base::MessageLoopForIO;
737 using base::MessageLoopForUI; 737 using base::MessageLoopForUI;
738 738
739 #endif // BASE_MESSAGE_LOOP_H_ 739 #endif // BASE_MESSAGE_LOOP_H_
OLDNEW
« no previous file with comments | « trunk/src/base/deferred_sequenced_task_runner.h ('k') | trunk/src/base/prefs/json_pref_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698