| Index: components/web_view/web_view_application_delegate.cc
|
| diff --git a/components/web_view/web_view_application_delegate.cc b/components/web_view/web_view_application_delegate.cc
|
| index f264fe5ff47bb7e3b82a5c1ec3baaf12561e58fe..1c9c5c76e30dd48a20d6f3978785a0e410ad970e 100644
|
| --- a/components/web_view/web_view_application_delegate.cc
|
| +++ b/components/web_view/web_view_application_delegate.cc
|
| @@ -7,7 +7,7 @@
|
| #include <utility>
|
|
|
| #include "components/web_view/web_view_impl.h"
|
| -#include "mojo/shell/public/cpp/application_connection.h"
|
| +#include "mojo/shell/public/cpp/connection.h"
|
|
|
| namespace web_view {
|
|
|
| @@ -22,7 +22,7 @@ void WebViewApplicationDelegate::Initialize(mojo::Shell* shell,
|
| }
|
|
|
| bool WebViewApplicationDelegate::AcceptConnection(
|
| - mojo::ApplicationConnection* connection) {
|
| + mojo::Connection* connection) {
|
| connection->AddService<mojom::WebViewFactory>(this);
|
| return true;
|
| }
|
| @@ -34,7 +34,7 @@ void WebViewApplicationDelegate::CreateWebView(
|
| }
|
|
|
| void WebViewApplicationDelegate::Create(
|
| - mojo::ApplicationConnection* connection,
|
| + mojo::Connection* connection,
|
| mojo::InterfaceRequest<mojom::WebViewFactory> request) {
|
| factory_bindings_.AddBinding(this, std::move(request));
|
| }
|
|
|