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

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

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | « chrome/installer/util/google_chrome_distribution.h ('k') | chrome/installer/util/installation_validator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/helper.h
diff --git a/chrome/installer/util/helper.h b/chrome/installer/util/helper.h
index e588be1463e8e0010f56633fe58ba96421ebf5b6..68d873cbcf10ebdd87b210e2b5751254ff5b036f 100644
--- a/chrome/installer/util/helper.h
+++ b/chrome/installer/util/helper.h
@@ -11,7 +11,10 @@
#include <vector>
class BrowserDistribution;
+
+namespace base {
class FilePath;
+}
namespace installer {
@@ -20,7 +23,7 @@ namespace installer {
// system_install: if true, the function returns system wide location
// (ProgramFiles\Google). Otherwise it returns user specific
// location (Document And Settings\<user>\Local Settings...)
-FilePath GetChromeInstallPath(bool system_install, BrowserDistribution* dist);
+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
@@ -31,7 +34,7 @@ FilePath GetChromeInstallPath(bool system_install, BrowserDistribution* dist);
// otherwise. If more than one path is returned, they are guaranteed to be
// siblings.
void GetChromeUserDataPaths(BrowserDistribution* dist,
- std::vector<FilePath>* paths);
+ std::vector<base::FilePath>* paths);
// Returns the distribution corresponding to the current process's binaries.
// In the case of a multi-install product, this will be the CHROME_BINARIES
« no previous file with comments | « chrome/installer/util/google_chrome_distribution.h ('k') | chrome/installer/util/installation_validator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698