| Index: shell/data_pipe_peek_unittest.cc
|
| diff --git a/shell/data_pipe_peek_unittest.cc b/shell/data_pipe_peek_unittest.cc
|
| index e6ef8f814c879542a99f040225b2d8016b977e42..2eebf4108792306c16e2f2f9efb51c07d5d6cf10 100644
|
| --- a/shell/data_pipe_peek_unittest.cc
|
| +++ b/shell/data_pipe_peek_unittest.cc
|
| @@ -7,16 +7,15 @@
|
| #include "shell/context.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -namespace mojo {
|
| namespace shell {
|
| namespace {
|
|
|
| TEST(DataPipePeek, PeekNBytes) {
|
| Context::EnsureEmbedderIsInitialized();
|
|
|
| - DataPipe data_pipe;
|
| - DataPipeConsumerHandle consumer(data_pipe.consumer_handle.get());
|
| - DataPipeProducerHandle producer(data_pipe.producer_handle.get());
|
| + mojo::DataPipe data_pipe;
|
| + mojo::DataPipeConsumerHandle consumer(data_pipe.consumer_handle.get());
|
| + mojo::DataPipeProducerHandle producer(data_pipe.producer_handle.get());
|
|
|
| // Inialize the pipe with 4 bytes.
|
|
|
| @@ -71,9 +70,9 @@ TEST(DataPipePeek, PeekNBytes) {
|
| TEST(DataPipePeek, PeekLine) {
|
| Context::EnsureEmbedderIsInitialized();
|
|
|
| - DataPipe data_pipe;
|
| - DataPipeConsumerHandle consumer(data_pipe.consumer_handle.get());
|
| - DataPipeProducerHandle producer(data_pipe.producer_handle.get());
|
| + mojo::DataPipe data_pipe;
|
| + mojo::DataPipeConsumerHandle consumer(data_pipe.consumer_handle.get());
|
| + mojo::DataPipeProducerHandle producer(data_pipe.producer_handle.get());
|
|
|
| // Inialize the pipe with 4 bytes and no newline.
|
|
|
| @@ -110,4 +109,3 @@ TEST(DataPipePeek, PeekLine) {
|
|
|
| } // namespace
|
| } // namespace shell
|
| -} // namespace mojo
|
|
|