| Index: mojo/application_manager/application_manager.h
|
| diff --git a/mojo/application_manager/application_manager.h b/mojo/application_manager/application_manager.h
|
| index 940aa30044d7dbbf63ba204b406855342bf3f61f..af74d8b7c068e400734ebf2546fb066298a16fdd 100644
|
| --- a/mojo/application_manager/application_manager.h
|
| +++ b/mojo/application_manager/application_manager.h
|
| @@ -23,7 +23,7 @@ class MOJO_APPLICATION_MANAGER_EXPORT ApplicationManager {
|
| class MOJO_APPLICATION_MANAGER_EXPORT Delegate {
|
| public:
|
| virtual ~Delegate();
|
| - // Send when the Applicaiton holding the handle on the other end of the
|
| + // Send when the Application holding the handle on the other end of the
|
| // Shell pipe goes away.
|
| virtual void OnApplicationError(const GURL& url) = 0;
|
| };
|
| @@ -80,6 +80,9 @@ class MOJO_APPLICATION_MANAGER_EXPORT ApplicationManager {
|
| const GURL& application_url,
|
| const std::string& interface_name);
|
|
|
| + void RegisterExternalApplication(const GURL& application_url,
|
| + ScopedMessagePipeHandle shell);
|
| +
|
| void set_delegate(Delegate* delegate) { delegate_ = delegate; }
|
|
|
| // Sets the default Loader to be used if not overridden by SetLoaderForURL()
|
|
|