| Index: content/public/common/mojo_shell_connection.h
|
| diff --git a/content/public/common/mojo_shell_connection.h b/content/public/common/mojo_shell_connection.h
|
| index 584073ce58c93ced8304d374a0efbfb207508b19..4f8d759b4dc14f410f92dd3f01119b3728bd6f8e 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() {}
|
| };
|
|
|