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

Unified Diff: chrome/installer/util/product.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: 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/product.h
diff --git a/chrome/installer/util/product.h b/chrome/installer/util/product.h
index 4e70b424b51f5a8312aac2def9fbd5256abb0367..57699286e4f6d6a6543b93b7ad7a588e27f94fc5 100644
--- a/chrome/installer/util/product.h
+++ b/chrome/installer/util/product.h
@@ -81,15 +81,12 @@ class Product {
return options_.erase(option) != 0;
}
- // 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 GetUserDataPaths(std::vector<base::FilePath>* paths) const;
+ // 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 GetUserDataPath() const;
// Launches Chrome without waiting for it to exit.
bool LaunchChrome(const base::FilePath& application_path) const;

Powered by Google App Engine
This is Rietveld 408576698