| Index: mojo/runner/native_application_support.h
|
| diff --git a/mojo/runner/native_application_support.h b/mojo/runner/native_application_support.h
|
| index 24cc16c66b3147e0db232d962a248242fda5575e..5fbbea065e9b843961da46f05c2ce9e2208f5c1b 100644
|
| --- a/mojo/runner/native_application_support.h
|
| +++ b/mojo/runner/native_application_support.h
|
| @@ -21,16 +21,13 @@ namespace runner {
|
|
|
| // Loads the native Mojo application from the DSO specified by |app_path|.
|
| // Returns the |base::NativeLibrary| for the application on success (or null on
|
| -// failure). If |cleanup| is |DELETE|, it will delete |app_path| (regardless of
|
| -// success or failure).
|
| +// failure).
|
| //
|
| // Note: The caller may choose to eventually unload the returned DSO. If so,
|
| // this should be done only after the thread on which |LoadNativeApplication()|
|
| // and |RunNativeApplication()| were called has terminated, so that any
|
| // thread-local destructors have been executed.
|
| -base::NativeLibrary LoadNativeApplication(
|
| - const base::FilePath& app_path,
|
| - shell::NativeApplicationCleanup cleanup);
|
| +base::NativeLibrary LoadNativeApplication(const base::FilePath& app_path);
|
|
|
| // Runs the native Mojo application from the DSO that was loaded using
|
| // |LoadNativeApplication()|; this tolerates |app_library| being null. This
|
|
|