| Index: components/leveldb/remote_iterator_unittest.cc
|
| diff --git a/components/leveldb/remote_iterator_unittest.cc b/components/leveldb/remote_iterator_unittest.cc
|
| index 4319dc39212073c248823916f7c533a4275d6fb5..56e1c9319a3a664b6454fda3b8d3fa67e68beac3 100644
|
| --- a/components/leveldb/remote_iterator_unittest.cc
|
| +++ b/components/leveldb/remote_iterator_unittest.cc
|
| @@ -8,8 +8,8 @@
|
| #include "base/macros.h"
|
| #include "base/run_loop.h"
|
| #include "components/leveldb/public/cpp/remote_iterator.h"
|
| +#include "components/leveldb/public/cpp/util.h"
|
| #include "components/leveldb/public/interfaces/leveldb.mojom.h"
|
| -#include "mojo/common/common_type_converters.h"
|
| #include "services/shell/public/cpp/service_context.h"
|
| #include "services/shell/public/cpp/service_test.h"
|
|
|
| @@ -55,8 +55,8 @@ class RemoteIteratorTest : public shell::test::ServiceTest {
|
| // Write a key to the database.
|
| error = mojom::DatabaseError::INVALID_ARGUMENT;
|
| base::RunLoop run_loop;
|
| - database_->Put(mojo::Array<uint8_t>::From(p.first),
|
| - mojo::Array<uint8_t>::From(p.second),
|
| + database_->Put(StdStringToUint8Vector(p.first),
|
| + StdStringToUint8Vector(p.second),
|
| Capture(&error, run_loop.QuitClosure()));
|
| run_loop.Run();
|
| EXPECT_EQ(mojom::DatabaseError::OK, error);
|
|
|