Index: shell/native_application_support.h |
diff --git a/shell/native_application_support.h b/shell/native_application_support.h |
index 2c3b0db615bce63039a0f4b0240326c7f9082ea5..5e24d4b1e60eeb2f16aaa587621f9ea532e41d0e 100644 |
--- a/shell/native_application_support.h |
+++ b/shell/native_application_support.h |
@@ -18,19 +18,15 @@ class Application; |
namespace shell { |
-enum class NativeApplicationCleanup { DELETE, DONT_DELETE }; |
- |
// 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 |
-// sucess 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, |
- 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 |