Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1781)

Unified Diff: chrome/browser/mac/install_from_dmg.h

Issue 7275009: Install from disk image: eject original disk image volume and trash disk image file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/mac/install_from_dmg.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/mac/install_from_dmg.h
===================================================================
--- chrome/browser/mac/install_from_dmg.h (revision 90773)
+++ chrome/browser/mac/install_from_dmg.h (working copy)
@@ -6,10 +6,19 @@
#define CHROME_BROWSER_MAC_INSTALL_FROM_DMG_H_
#pragma once
+#include <string>
+
// If the application is running from a read-only disk image, prompts the user
// to install it to the hard drive. If the user approves, the application
// will be installed and launched, and MaybeInstallFromDiskImage will return
// true. In that case, the caller must exit expeditiously.
bool MaybeInstallFromDiskImage();
+// Given a BSD device name of the form "diskN" or "diskNsM" as used by IOKit,
+// where the device name corresponds to a disk image, unmounts all filesystems
+// on that disk image ("diskN", even if "diskNsM" was supplied), "ejects" the
+// disk image from the system, and places the disk image file into the Trash.
+// If at any step an error occurs, further processing is aborted.
+void EjectAndTrashDiskImage(const std::string& dmg_bsd_device_name);
+
#endif // CHROME_BROWSER_MAC_INSTALL_FROM_DMG_H_
« no previous file with comments | « no previous file | chrome/browser/mac/install_from_dmg.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698