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

Unified 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, 1 month 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/system/simple_broker.h
diff --git a/mojo/edk/system/simple_broker.h b/mojo/edk/system/simple_broker.h
deleted file mode 100644
index 93b22f6942a95f173ee4bf51ce8718d5d5d4297a..0000000000000000000000000000000000000000
--- a/mojo/edk/system/simple_broker.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef MOJO_EDK_SYSTEM_SIMPLE_BROKER_H_
-#define MOJO_EDK_SYSTEM_SIMPLE_BROKER_H_
-
-#include "mojo/edk/system/broker.h"
-
-namespace mojo {
-namespace edk {
-
-// A simple implementation of Broker interface. This isn't meant for production
-// use (i.e. with multi-process, sandboxes). It's provided for use by unittests.
-// Implementation note: this default implementation works across processes
-// without a sandbox.
-class MOJO_SYSTEM_IMPL_EXPORT SimpleBroker : public Broker {
- public:
- SimpleBroker();
- ~SimpleBroker() override;
-
- // Broker implementation:
-#if defined(OS_WIN)
- void CreatePlatformChannelPair(ScopedPlatformHandle* server,
- ScopedPlatformHandle* client) override;
- void HandleToToken(const PlatformHandle* platform_handles,
- size_t count,
- uint64_t* tokens) override;
- void TokenToHandle(const uint64_t* tokens,
- size_t count,
- PlatformHandle* handles) override;
-#endif
-};
-
-} // namespace edk
-} // namespace mojo
-
-#endif // MOJO_EDK_SYSTEM_SIMPLE_BROKER_H_
« 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