| Index: mojo/shell/static_application_loader.h
|
| diff --git a/mojo/shell/static_application_loader.h b/mojo/shell/static_application_loader.h
|
| index 9cb5cae93ed3571e2118a51c310a42054eb57a72..38b4a87448a522c65777dc3bce13b70958dc6807 100644
|
| --- a/mojo/shell/static_application_loader.h
|
| +++ b/mojo/shell/static_application_loader.h
|
| @@ -17,20 +17,20 @@ class SimpleThread;
|
| }
|
|
|
| namespace mojo {
|
| -class ApplicationDelegate;
|
| +class ShellClient;
|
| }
|
|
|
| namespace mojo {
|
| namespace shell {
|
|
|
| // An ApplicationLoader which loads a single type of app from a given
|
| -// ApplicationDelegate factory. A Load() request is fulfilled by creating an
|
| +// mojo::ShellClient factory. A Load() request is fulfilled by creating an
|
| // instance of the app on a new thread. Only one instance of the app will run at
|
| // a time. Any Load requests received while the app is running will be dropped.
|
| class StaticApplicationLoader : public mojo::shell::ApplicationLoader {
|
| public:
|
| using ApplicationFactory =
|
| - base::Callback<scoped_ptr<mojo::ApplicationDelegate>()>;
|
| + base::Callback<scoped_ptr<mojo::ShellClient>()>;
|
|
|
| // Constructs a static loader for |factory|.
|
| explicit StaticApplicationLoader(const ApplicationFactory& factory);
|
|
|