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

Side by Side Diff: Source/core/dom/default/PlatformMessagePortChannel.h

Issue 19010006: core/dom: Include wtf files using "wtf/foo.h" form. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rm extra blank line 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef PlatformMessagePortChannel_h 31 #ifndef PlatformMessagePortChannel_h
32 #define PlatformMessagePortChannel_h 32 #define PlatformMessagePortChannel_h
33 33
34 #include "core/dom/MessagePortChannel.h" 34 #include "core/dom/MessagePortChannel.h"
35 35
36 #include <wtf/MessageQueue.h> 36 #include "wtf/MessageQueue.h"
37 #include <wtf/PassRefPtr.h> 37 #include "wtf/PassRefPtr.h"
38 #include <wtf/Threading.h> 38 #include "wtf/Threading.h"
39 39
40 namespace WebCore { 40 namespace WebCore {
41 41
42 class MessagePort; 42 class MessagePort;
43 43
44 // PlatformMessagePortChannel is a platform-dependent interface to the remot e side of a message channel. 44 // PlatformMessagePortChannel is a platform-dependent interface to the remot e side of a message channel.
45 // This default implementation supports multiple threads running within a si ngle process. Implementations for multi-process platforms should define these pu blic APIs in their own platform-specific PlatformMessagePortChannel file. 45 // This default implementation supports multiple threads running within a si ngle process. Implementations for multi-process platforms should define these pu blic APIs in their own platform-specific PlatformMessagePortChannel file.
46 // The goal of this implementation is to eliminate contention except when cl oning or closing the port, so each side of the channel has its own separate mute x. 46 // The goal of this implementation is to eliminate contention except when cl oning or closing the port, so each side of the channel has its own separate mute x.
47 class PlatformMessagePortChannel : public ThreadSafeRefCounted<PlatformMessa gePortChannel> { 47 class PlatformMessagePortChannel : public ThreadSafeRefCounted<PlatformMessa gePortChannel> {
48 public: 48 public:
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 RefPtr<MessagePortQueue> m_incomingQueue; 106 RefPtr<MessagePortQueue> m_incomingQueue;
107 RefPtr<MessagePortQueue> m_outgoingQueue; 107 RefPtr<MessagePortQueue> m_outgoingQueue;
108 108
109 // The port we are connected to (the remote port) - this is the port tha t is notified when new messages arrive. 109 // The port we are connected to (the remote port) - this is the port tha t is notified when new messages arrive.
110 MessagePort* m_remotePort; 110 MessagePort* m_remotePort;
111 }; 111 };
112 112
113 } // namespace WebCore 113 } // namespace WebCore
114 114
115 #endif // PlatformMessagePortChannel_h 115 #endif // PlatformMessagePortChannel_h
OLDNEW
« no previous file with comments | « Source/core/dom/WindowEventContext.h ('k') | Source/core/dom/default/chromium/PlatformMessagePortChannelChromium.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698