diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-10 19:20:14 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-10 19:20:14 +0000 |
commit | 9e27571002528a10306e535427dda2571c0a2704 (patch) | |
tree | 18f200af44e816e434f9ccb8cfa7173caef17b4a /device | |
parent | 3ab5e0f10f73ef249452d8c5e2af11accb7c4606 (diff) | |
download | chromium_src-9e27571002528a10306e535427dda2571c0a2704.zip chromium_src-9e27571002528a10306e535427dda2571c0a2704.tar.gz chromium_src-9e27571002528a10306e535427dda2571c0a2704.tar.bz2 |
More FilePath -> base::FilePath replacement.
Review URL: https://codereview.chromium.org/12225112
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181655 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'device')
-rw-r--r-- | device/bluetooth/bluetooth_service_record_chromeos_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/device/bluetooth/bluetooth_service_record_chromeos_unittest.cc b/device/bluetooth/bluetooth_service_record_chromeos_unittest.cc index 78b2d5a..bd9e591 100644 --- a/device/bluetooth/bluetooth_service_record_chromeos_unittest.cc +++ b/device/bluetooth/bluetooth_service_record_chromeos_unittest.cc @@ -26,8 +26,8 @@ namespace chromeos { class BluetoothServiceRecordChromeOSTest : public testing::Test { public: - FilePath GetTestDataFilePath(const char* file) { - FilePath path; + base::FilePath GetTestDataFilePath(const char* file) { + base::FilePath path; PathService::Get(base::DIR_SOURCE_ROOT, &path); path = path.AppendASCII("device"); path = path.AppendASCII("test"); |