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

Unified Diff: components/web_view/web_view_application_delegate.cc

Issue 1675083002: Rename ApplicationDelegate to ShellClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@delegate
Patch Set: . Created 4 years, 10 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/web_view/web_view_application_delegate.h ('k') | components/web_view/web_view_apptest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
}
« no previous file with comments | « components/web_view/web_view_application_delegate.h ('k') | components/web_view/web_view_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698