summaryrefslogtreecommitdiffstats
path: root/content/public/common/mojo_shell_connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/public/common/mojo_shell_connection.h')
-rw-r--r--content/public/common/mojo_shell_connection.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/public/common/mojo_shell_connection.h b/content/public/common/mojo_shell_connection.h
index 584073c..4f8d759 100644
--- a/content/public/common/mojo_shell_connection.h
+++ b/content/public/common/mojo_shell_connection.h
@@ -8,7 +8,7 @@
#include "content/common/content_export.h"
namespace mojo {
-class ApplicationConnection;
+class Connection;
class Shell;
}
@@ -24,10 +24,10 @@ namespace content {
class CONTENT_EXPORT MojoShellConnection {
public:
// Override to add additional services to inbound connections.
+ // TODO(beng): This should just be ShellClient.
class Listener {
public:
- virtual bool AcceptConnection(
- mojo::ApplicationConnection* connection) = 0;
+ virtual bool AcceptConnection(mojo::Connection* connection) = 0;
virtual ~Listener() {}
};