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

Unified Diff: components/leveldb/remote_iterator_unittest.cc

Issue 2123363002: ShellTest -> ServiceTest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/leveldb/leveldb_service_unittest.cc ('k') | media/mojo/services/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/leveldb/remote_iterator_unittest.cc
diff --git a/components/leveldb/remote_iterator_unittest.cc b/components/leveldb/remote_iterator_unittest.cc
index bd6167981913fb1a89c4736777ba6c442b82814f..caef121ba8f2024b395c2109d65850c4fb3036b6 100644
--- a/components/leveldb/remote_iterator_unittest.cc
+++ b/components/leveldb/remote_iterator_unittest.cc
@@ -8,8 +8,8 @@
#include "components/leveldb/public/cpp/remote_iterator.h"
#include "components/leveldb/public/interfaces/leveldb.mojom.h"
#include "mojo/common/common_type_converters.h"
+#include "services/shell/public/cpp/service_test.h"
#include "services/shell/public/cpp/shell_connection.h"
-#include "services/shell/public/cpp/shell_test.h"
namespace leveldb {
namespace {
@@ -22,15 +22,15 @@ base::Callback<void(T1)> Capture(T1* t1) {
return base::Bind(&DoCapture<T1>, t1);
}
-class RemoteIteratorTest : public shell::test::ShellTest {
+class RemoteIteratorTest : public shell::test::ServiceTest {
public:
- RemoteIteratorTest() : ShellTest("exe:leveldb_service_unittests") {}
+ RemoteIteratorTest() : ServiceTest("exe:leveldb_service_unittests") {}
~RemoteIteratorTest() override {}
protected:
// Overridden from mojo::test::ApplicationTestBase:
void SetUp() override {
- ShellTest::SetUp();
+ ServiceTest::SetUp();
connector()->ConnectToInterface("mojo:leveldb", &leveldb_);
mojom::DatabaseError error;
@@ -53,7 +53,7 @@ class RemoteIteratorTest : public shell::test::ShellTest {
void TearDown() override {
leveldb_.reset();
- ShellTest::TearDown();
+ ServiceTest::TearDown();
}
mojom::LevelDBServicePtr& leveldb() { return leveldb_; }
« no previous file with comments | « components/leveldb/leveldb_service_unittest.cc ('k') | media/mojo/services/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698