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

Unified Diff: components/web_view/frame_connection.h

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/frame_apptest.cc ('k') | components/web_view/frame_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/web_view/frame_connection.h
diff --git a/components/web_view/frame_connection.h b/components/web_view/frame_connection.h
index cd29eddd294f0cf798217690d1282996c55df528..a1488af32a870cb6b72bd720ece9ac1e3db92199 100644
--- a/components/web_view/frame_connection.h
+++ b/components/web_view/frame_connection.h
@@ -17,7 +17,7 @@
#include "mojo/services/network/public/interfaces/url_loader.mojom.h"
namespace mojo {
-class ApplicationConnection;
+class Connection;
class Shell;
}
@@ -51,9 +51,7 @@ class FrameConnection : public FrameUserData {
mojom::FrameClient* frame_client() { return frame_client_.get(); }
- mojo::ApplicationConnection* application_connection() {
- return application_connection_.get();
- }
+ mojo::Connection* connection() { return connection_.get(); }
// Asks the remote application for a WindowTreeClient.
mus::mojom::WindowTreeClientPtr GetWindowTreeClient();
@@ -65,7 +63,7 @@ class FrameConnection : public FrameUserData {
private:
mojom::FrameClientPtr frame_client_;
- scoped_ptr<mojo::ApplicationConnection> application_connection_;
+ scoped_ptr<mojo::Connection> connection_;
DISALLOW_COPY_AND_ASSIGN(FrameConnection);
};
« no previous file with comments | « components/web_view/frame_apptest.cc ('k') | components/web_view/frame_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698