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

Side by Side Diff: mojo/edk/system/simple_broker.h

Issue 1485573002: Remove SimpleBroker and instead use the production broker implementation in tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment Created 5 years 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
« no previous file with comments | « mojo/edk/system/run_all_unittests.cc ('k') | mojo/edk/system/simple_broker.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MOJO_EDK_SYSTEM_SIMPLE_BROKER_H_
6 #define MOJO_EDK_SYSTEM_SIMPLE_BROKER_H_
7
8 #include "mojo/edk/system/broker.h"
9
10 namespace mojo {
11 namespace edk {
12
13 // A simple implementation of Broker interface. This isn't meant for production
14 // use (i.e. with multi-process, sandboxes). It's provided for use by unittests.
15 // Implementation note: this default implementation works across processes
16 // without a sandbox.
17 class MOJO_SYSTEM_IMPL_EXPORT SimpleBroker : public Broker {
18 public:
19 SimpleBroker();
20 ~SimpleBroker() override;
21
22 // Broker implementation:
23 #if defined(OS_WIN)
24 void CreatePlatformChannelPair(ScopedPlatformHandle* server,
25 ScopedPlatformHandle* client) override;
26 void HandleToToken(const PlatformHandle* platform_handles,
27 size_t count,
28 uint64_t* tokens) override;
29 void TokenToHandle(const uint64_t* tokens,
30 size_t count,
31 PlatformHandle* handles) override;
32 #endif
33 };
34
35 } // namespace edk
36 } // namespace mojo
37
38 #endif // MOJO_EDK_SYSTEM_SIMPLE_BROKER_H_
OLDNEW
« no previous file with comments | « mojo/edk/system/run_all_unittests.cc ('k') | mojo/edk/system/simple_broker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698