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

Side by Side Diff: third_party/mojo/src/mojo/edk/system/endpoint_relayer.h

Issue 929433005: WIP: A couple of more ChannelMojo speedup ideas (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Build and test fix Created 5 years, 10 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 MOJO_EDK_SYSTEM_ENDPOINT_RELAYER_H_ 5 #ifndef MOJO_EDK_SYSTEM_ENDPOINT_RELAYER_H_
6 #define MOJO_EDK_SYSTEM_ENDPOINT_RELAYER_H_ 6 #define MOJO_EDK_SYSTEM_ENDPOINT_RELAYER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/synchronization/lock.h" 10 #include "base/synchronization/lock.h"
(...skipping 11 matching lines...) Expand all
22 public: 22 public:
23 EndpointRelayer(); 23 EndpointRelayer();
24 24
25 // Gets the other port number (i.e., 0 -> 1, 1 -> 0). 25 // Gets the other port number (i.e., 0 -> 1, 1 -> 0).
26 static unsigned GetPeerPort(unsigned port); 26 static unsigned GetPeerPort(unsigned port);
27 27
28 // Initialize this object. This must be called before any other method. 28 // Initialize this object. This must be called before any other method.
29 void Init(ChannelEndpoint* endpoint0, ChannelEndpoint* endpoint1); 29 void Init(ChannelEndpoint* endpoint0, ChannelEndpoint* endpoint1);
30 30
31 // |ChannelEndpointClient| methods: 31 // |ChannelEndpointClient| methods:
32 bool OnReadMessage(unsigned port, MessageInTransit* message) override; 32 bool OnReadMessage(unsigned port,
33 MessageInTransit::ReadContext& reading_message) override;
33 void OnDetachFromChannel(unsigned port) override; 34 void OnDetachFromChannel(unsigned port) override;
34 35
35 private: 36 private:
36 ~EndpointRelayer() override; 37 ~EndpointRelayer() override;
37 38
38 // TODO(vtl): We could probably get away without the lock if we had a 39 // TODO(vtl): We could probably get away without the lock if we had a
39 // thread-safe |scoped_refptr|. 40 // thread-safe |scoped_refptr|.
40 base::Lock lock_; // Protects the following members. 41 base::Lock lock_; // Protects the following members.
41 scoped_refptr<ChannelEndpoint> endpoints_[2]; 42 scoped_refptr<ChannelEndpoint> endpoints_[2];
42 43
43 DISALLOW_COPY_AND_ASSIGN(EndpointRelayer); 44 DISALLOW_COPY_AND_ASSIGN(EndpointRelayer);
44 }; 45 };
45 46
46 } // namespace system 47 } // namespace system
47 } // namespace mojo 48 } // namespace mojo
48 49
49 #endif // MOJO_EDK_SYSTEM_ENDPOINT_RELAYER_H_ 50 #endif // MOJO_EDK_SYSTEM_ENDPOINT_RELAYER_H_
OLDNEW
« no previous file with comments | « third_party/mojo/src/mojo/edk/system/dispatcher.cc ('k') | third_party/mojo/src/mojo/edk/system/endpoint_relayer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698