summaryrefslogtreecommitdiffstats
path: root/rlz/chromeos
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-02 18:55:49 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-02 18:55:49 +0000
commitfb4bcfa38b2cdd740fd112fabeb5d45add27354b (patch)
treeae328c487cad94671d0788b3287cdd053f5d46a6 /rlz/chromeos
parent072b8d48705dc76cafa1aa8189f62a15c94aa7fb (diff)
downloadchromium_src-fb4bcfa38b2cdd740fd112fabeb5d45add27354b.zip
chromium_src-fb4bcfa38b2cdd740fd112fabeb5d45add27354b.tar.gz
chromium_src-fb4bcfa38b2cdd740fd112fabeb5d45add27354b.tar.bz2
Move some more file utils to the base namespace.
This also swaps the order of the parameters to GetShmemTempDir so the out parameter is last, and enhances some documentation. Review URL: https://codereview.chromium.org/93263002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238144 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'rlz/chromeos')
-rw-r--r--rlz/chromeos/lib/rlz_value_store_chromeos.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/rlz/chromeos/lib/rlz_value_store_chromeos.cc b/rlz/chromeos/lib/rlz_value_store_chromeos.cc
index a636863..06e4a54 100644
--- a/rlz/chromeos/lib/rlz_value_store_chromeos.cc
+++ b/rlz/chromeos/lib/rlz_value_store_chromeos.cc
@@ -43,14 +43,14 @@ base::FilePath g_testing_rlz_store_path_;
// Returns file path of the RLZ storage.
base::FilePath GetRlzStorePath() {
return g_testing_rlz_store_path_.empty() ?
- file_util::GetHomeDir().Append(kRLZDataFileName) :
+ base::GetHomeDir().Append(kRLZDataFileName) :
g_testing_rlz_store_path_.Append(kRLZDataFileName);
}
// Returns file path of the RLZ storage lock file.
base::FilePath GetRlzStoreLockPath() {
return g_testing_rlz_store_path_.empty() ?
- file_util::GetHomeDir().Append(kRLZLockFileName) :
+ base::GetHomeDir().Append(kRLZLockFileName) :
g_testing_rlz_store_path_.Append(kRLZLockFileName);
}