summaryrefslogtreecommitdiffstats
path: root/third_party/mojo/src/mojo/edk/system/channel_test_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/mojo/src/mojo/edk/system/channel_test_base.h')
-rw-r--r--third_party/mojo/src/mojo/edk/system/channel_test_base.h67
1 files changed, 0 insertions, 67 deletions
diff --git a/third_party/mojo/src/mojo/edk/system/channel_test_base.h b/third_party/mojo/src/mojo/edk/system/channel_test_base.h
deleted file mode 100644
index 2bc5970..0000000
--- a/third_party/mojo/src/mojo/edk/system/channel_test_base.h
+++ /dev/null
@@ -1,67 +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 THIRD_PARTY_MOJO_SRC_MOJO_EDK_SYSTEM_CHANNEL_TEST_BASE_H_
-#define THIRD_PARTY_MOJO_SRC_MOJO_EDK_SYSTEM_CHANNEL_TEST_BASE_H_
-
-#include "base/bind.h"
-#include "base/location.h"
-#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/test/test_io_thread.h"
-#include "mojo/public/cpp/system/macros.h"
-#include "testing/gtest/include/gtest/gtest.h"
-#include "third_party/mojo/src/mojo/edk/embedder/simple_platform_support.h"
-#include "third_party/mojo/src/mojo/edk/system/channel.h"
-
-namespace mojo {
-namespace system {
-
-class RawChannel;
-
-namespace test {
-
-// A base class for tests that need a |Channel| set up in a simple way.
-class ChannelTestBase : public testing::Test {
- public:
- ChannelTestBase();
- ~ChannelTestBase() override;
-
- void SetUp() override;
-
- template <typename Functor, typename... Args>
- void PostMethodToIOThreadAndWait(const tracked_objects::Location& from_here,
- Functor functor,
- const Args&... args) {
- io_thread_.PostTaskAndWait(
- from_here, base::Bind(functor, base::Unretained(this), args...));
- }
-
- // These should only be called from |io_thread()|:
- void CreateChannelOnIOThread(unsigned i);
- void InitChannelOnIOThread(unsigned i);
- void CreateAndInitChannelOnIOThread(unsigned i);
- void ShutdownChannelOnIOThread(unsigned i);
- void ShutdownAndReleaseChannelOnIOThread(unsigned i);
-
- base::TestIOThread* io_thread() { return &io_thread_; }
- Channel* channel(unsigned i) { return channels_[i].get(); }
- scoped_refptr<Channel>* mutable_channel(unsigned i) { return &channels_[i]; }
-
- private:
- void SetUpOnIOThread();
-
- embedder::SimplePlatformSupport platform_support_;
- base::TestIOThread io_thread_;
- scoped_ptr<RawChannel> raw_channels_[2];
- scoped_refptr<Channel> channels_[2];
-
- MOJO_DISALLOW_COPY_AND_ASSIGN(ChannelTestBase);
-};
-
-} // namespace test
-} // namespace system
-} // namespace mojo
-
-#endif // THIRD_PARTY_MOJO_SRC_MOJO_EDK_SYSTEM_CHANNEL_TEST_BASE_H_