| Index: components/web_view/frame_apptest.cc
|
| diff --git a/components/web_view/frame_apptest.cc b/components/web_view/frame_apptest.cc
|
| index 40c31bffd6f76e000c7e95324613d64a157a16a2..915e1b52ce2f2cf1a4c569829cd807b9216c697e 100644
|
| --- a/components/web_view/frame_apptest.cc
|
| +++ b/components/web_view/frame_apptest.cc
|
| @@ -383,9 +383,13 @@ class FrameTest : public mojo::test::ApplicationTestBase,
|
| mojo::ApplicationConnection* connection,
|
| mojo::InterfaceRequest<mojo::ViewTreeClient> request) override {
|
| if (view_and_frame_) {
|
| - mus::ViewTreeConnection::Create(view_and_frame_.get(), request.Pass());
|
| + mus::ViewTreeConnection::Create(
|
| + view_and_frame_.get(), request.Pass(),
|
| + mus::ViewTreeConnection::CreateType::DONT_WAIT_FOR_EMBED);
|
| } else {
|
| - mus::ViewTreeConnection::Create(this, request.Pass());
|
| + mus::ViewTreeConnection::Create(
|
| + this, request.Pass(),
|
| + mus::ViewTreeConnection::CreateType::DONT_WAIT_FOR_EMBED);
|
| }
|
| }
|
|
|
|
|