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

Unified Diff: components/web_view/frame_apptest.cc

Issue 1390353007: Adds MUSViewsInit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix windows Created 5 years, 2 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/pdf_viewer/pdf_viewer.cc ('k') | components/web_view/web_view_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
}
« no previous file with comments | « components/pdf_viewer/pdf_viewer.cc ('k') | components/web_view/web_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698