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

Side by Side Diff: base/message_loop/message_loop_proxy_impl.h

Issue 16514006: Update includes of message_loop_proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « base/message_loop.h ('k') | base/observer_list_threadsafe.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) 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_MESSAGE_LOOP_PROXY_IMPL_H_ 5 #ifndef BASE_MESSAGE_LOOP_MESSAGE_LOOP_PROXY_IMPL_H_
6 #define BASE_MESSAGE_LOOP_MESSAGE_LOOP_PROXY_IMPL_H_ 6 #define BASE_MESSAGE_LOOP_MESSAGE_LOOP_PROXY_IMPL_H_
7 7
8 #include "base/base_export.h" 8 #include "base/base_export.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "base/message_loop_proxy.h" 10 #include "base/message_loop/message_loop_proxy.h"
11 #include "base/synchronization/lock.h" 11 #include "base/synchronization/lock.h"
12 12
13 namespace base { 13 namespace base {
14 14
15 // A stock implementation of MessageLoopProxy that is created and managed by a 15 // A stock implementation of MessageLoopProxy that is created and managed by a
16 // MessageLoop. For now a MessageLoopProxyImpl can only be created as part of a 16 // MessageLoop. For now a MessageLoopProxyImpl can only be created as part of a
17 // MessageLoop. 17 // MessageLoop.
18 class BASE_EXPORT MessageLoopProxyImpl : public MessageLoopProxy { 18 class BASE_EXPORT MessageLoopProxyImpl : public MessageLoopProxy {
19 public: 19 public:
20 // MessageLoopProxy implementation 20 // MessageLoopProxy implementation
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 // The lock that protects access to target_message_loop_. 53 // The lock that protects access to target_message_loop_.
54 mutable base::Lock message_loop_lock_; 54 mutable base::Lock message_loop_lock_;
55 MessageLoop* target_message_loop_; 55 MessageLoop* target_message_loop_;
56 56
57 DISALLOW_COPY_AND_ASSIGN(MessageLoopProxyImpl); 57 DISALLOW_COPY_AND_ASSIGN(MessageLoopProxyImpl);
58 }; 58 };
59 59
60 } // namespace base 60 } // namespace base
61 61
62 #endif // BASE_MESSAGE_LOOP_MESSAGE_LOOP_PROXY_IMPL_H_ 62 #endif // BASE_MESSAGE_LOOP_MESSAGE_LOOP_PROXY_IMPL_H_
OLDNEW
« no previous file with comments | « base/message_loop.h ('k') | base/observer_list_threadsafe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698