| Index: mojo/shell/public/cpp/app_lifetime_helper.h
|
| diff --git a/mojo/shell/public/cpp/app_lifetime_helper.h b/mojo/shell/public/cpp/app_lifetime_helper.h
|
| index 14620b3a95ca89a9d59ee09b86fb6aae3bf13bb3..3755b916cbb96ef00d1d87bbc7bdfda46615d093 100644
|
| --- a/mojo/shell/public/cpp/app_lifetime_helper.h
|
| +++ b/mojo/shell/public/cpp/app_lifetime_helper.h
|
| @@ -11,6 +11,7 @@
|
|
|
| namespace mojo {
|
|
|
| +class Shell;
|
| class ShellConnection;
|
| class AppLifetimeHelper;
|
|
|
| @@ -57,7 +58,7 @@ class AppRefCount {
|
| // quit with a call to mojo::ShellConnection::Terminate().
|
| class AppLifetimeHelper {
|
| public:
|
| - explicit AppLifetimeHelper(ShellConnection* app);
|
| + explicit AppLifetimeHelper(Shell* shell);
|
| ~AppLifetimeHelper();
|
|
|
| scoped_ptr<AppRefCount> CreateAppRefCount();
|
| @@ -70,7 +71,7 @@ class AppLifetimeHelper {
|
| friend ShellConnection;
|
| void OnQuit();
|
|
|
| - ShellConnection* app_;
|
| + Shell* shell_;
|
| int ref_count_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AppLifetimeHelper);
|
|
|