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

Unified Diff: rlz/chromeos/lib/rlz_value_store_chromeos.cc

Issue 12298030: Add base:: qualifiers for FilePath uses. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | « remoting/host/win/daemon_process_main.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: rlz/chromeos/lib/rlz_value_store_chromeos.cc
diff --git a/rlz/chromeos/lib/rlz_value_store_chromeos.cc b/rlz/chromeos/lib/rlz_value_store_chromeos.cc
index 31577ccf4b29e6c9f2b57d4f20a9d4b9ca9d2bc8..47e32d1297310f04f4c554cb23f3b5d678a8ca9a 100644
--- a/rlz/chromeos/lib/rlz_value_store_chromeos.cc
+++ b/rlz/chromeos/lib/rlz_value_store_chromeos.cc
@@ -42,17 +42,17 @@ const base::FilePath::CharType kRLZLockFileName[] =
FILE_PATH_LITERAL("RLZ Data.lock");
// RLZ store path for testing.
-FilePath g_testing_rlz_store_path_;
+base::FilePath g_testing_rlz_store_path_;
// Returns file path of the RLZ storage.
-FilePath GetRlzStorePath() {
+base::FilePath GetRlzStorePath() {
return g_testing_rlz_store_path_.empty() ?
file_util::GetHomeDir().Append(kRLZDataFileName) :
g_testing_rlz_store_path_.Append(kRLZDataFileName);
}
// Returns file path of the RLZ storage lock file.
-FilePath GetRlzStoreLockPath() {
+base::FilePath GetRlzStoreLockPath() {
return g_testing_rlz_store_path_.empty() ?
file_util::GetHomeDir().Append(kRLZLockFileName) :
g_testing_rlz_store_path_.Append(kRLZLockFileName);
« no previous file with comments | « remoting/host/win/daemon_process_main.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698