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

Unified Diff: chrome/installer/util/helper.h

Issue 218683013: Remove stale code to delete the metro user data dir. It never shipped. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comment tweak Created 6 years, 9 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
Index: chrome/installer/util/helper.h
diff --git a/chrome/installer/util/helper.h b/chrome/installer/util/helper.h
index 68d873cbcf10ebdd87b210e2b5751254ff5b036f..152a160bc9012447512e0514e0f6e1b8bbe42a6e 100644
--- a/chrome/installer/util/helper.h
+++ b/chrome/installer/util/helper.h
@@ -8,7 +8,6 @@
#define CHROME_INSTALLER_UTIL_HELPER_H_
#include <string>
-#include <vector>
class BrowserDistribution;
@@ -25,16 +24,12 @@ namespace installer {
// location (Document And Settings\<user>\Local Settings...)
base::FilePath GetChromeInstallPath(bool system_install, BrowserDistribution* dist);
-// Returns the path(s) to the directory that holds the user data (primary and,
-// if applicable to |dist|, alternate). This is always inside a user's local
-// application data folder (e.g., "AppData\Local or "Local Settings\Application
-// Data" in %USERPROFILE%). Note that these are the defaults and do not take
-// into account that they can be overriden with a command line parameter.
-// |paths| may be empty on return, but is guaranteed not to contain empty paths
-// otherwise. If more than one path is returned, they are guaranteed to be
-// siblings.
-void GetChromeUserDataPaths(BrowserDistribution* dist,
- std::vector<base::FilePath>* paths);
+// Returns the path to the directory that holds the user data. This is always
+// inside a user's local application data folder (e.g., "AppData\Local" or
+// "Local Settings\Application Data" in %USERPROFILE%). Note that this is the
+// default user data directory and does not take into account that it can be
+// overriden with a command line parameter.
+base::FilePath GetChromeUserDataPath(BrowserDistribution* dist);
// Returns the distribution corresponding to the current process's binaries.
// In the case of a multi-install product, this will be the CHROME_BINARIES

Powered by Google App Engine
This is Rietveld 408576698