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

Unified Diff: sync/syncable/directory_backing_store_unittest.cc

Issue 12217101: Replace FilePath with base::FilePath in some more top level directories. (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 | « sync/syncable/directory.cc ('k') | sync/syncable/on_disk_directory_backing_store.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/syncable/directory_backing_store_unittest.cc
diff --git a/sync/syncable/directory_backing_store_unittest.cc b/sync/syncable/directory_backing_store_unittest.cc
index 96911978e932a8b75722e6a7107c98f6c4fba62d..3fa9edd82185b005d6fa4d70ed1a223978be5dd4 100644
--- a/sync/syncable/directory_backing_store_unittest.cc
+++ b/sync/syncable/directory_backing_store_unittest.cc
@@ -41,7 +41,7 @@ class MigrationTest : public testing::TestWithParam<int> {
return "nick@chromium.org";
}
- FilePath GetDatabasePath() {
+ base::FilePath GetDatabasePath() {
return temp_dir_.path().Append(Directory::kSyncDatabaseFilename);
}
@@ -3188,7 +3188,7 @@ namespace {
class OnDiskDirectoryBackingStoreForTest : public OnDiskDirectoryBackingStore {
public:
OnDiskDirectoryBackingStoreForTest(const std::string& dir_name,
- const FilePath& backing_filepath);
+ const base::FilePath& backing_filepath);
virtual ~OnDiskDirectoryBackingStoreForTest();
bool DidFailFirstOpenAttempt();
@@ -3201,7 +3201,7 @@ class OnDiskDirectoryBackingStoreForTest : public OnDiskDirectoryBackingStore {
OnDiskDirectoryBackingStoreForTest::OnDiskDirectoryBackingStoreForTest(
const std::string& dir_name,
- const FilePath& backing_filepath) :
+ const base::FilePath& backing_filepath) :
OnDiskDirectoryBackingStore(dir_name, backing_filepath),
first_open_failed_(false) { }
« no previous file with comments | « sync/syncable/directory.cc ('k') | sync/syncable/on_disk_directory_backing_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698