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

Unified Diff: webkit/fileapi/syncable/file_change_unittest.cc

Issue 12315004: Migrated sync_file_type and file_change from namespace fileapi to sync_file_system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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 | « webkit/fileapi/syncable/file_change.cc ('k') | webkit/fileapi/syncable/local_file_change_tracker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/syncable/file_change_unittest.cc
diff --git a/webkit/fileapi/syncable/file_change_unittest.cc b/webkit/fileapi/syncable/file_change_unittest.cc
index 2c60450d582ab06636e54ab72ef52672c679af7b..a148ece5430995512770b7860d3a2aef600f2a14 100644
--- a/webkit/fileapi/syncable/file_change_unittest.cc
+++ b/webkit/fileapi/syncable/file_change_unittest.cc
@@ -8,18 +8,16 @@
#include "base/logging.h"
#include "testing/gtest/include/gtest/gtest.h"
-namespace fileapi {
+namespace sync_file_system {
namespace {
FileChange AddOrUpdateFile() {
- return FileChange(FileChange::FILE_CHANGE_ADD_OR_UPDATE,
- SYNC_FILE_TYPE_FILE);
+ return FileChange(FileChange::FILE_CHANGE_ADD_OR_UPDATE, SYNC_FILE_TYPE_FILE);
}
FileChange DeleteFile() {
- return FileChange(FileChange::FILE_CHANGE_DELETE,
- SYNC_FILE_TYPE_FILE);
+ return FileChange(FileChange::FILE_CHANGE_DELETE, SYNC_FILE_TYPE_FILE);
}
FileChange AddDirectory() {
@@ -28,8 +26,7 @@ FileChange AddDirectory() {
}
FileChange DeleteDirectory() {
- return FileChange(FileChange::FILE_CHANGE_DELETE,
- SYNC_FILE_TYPE_DIRECTORY);
+ return FileChange(FileChange::FILE_CHANGE_DELETE, SYNC_FILE_TYPE_DIRECTORY);
}
template <size_t INPUT_SIZE>
@@ -136,4 +133,4 @@ TEST(FileChangeListTest, UpdateCombined) {
VerifyList(list, kExpected4);
}
-} // namespace fileapi
+} // namespace sync_file_system
« no previous file with comments | « webkit/fileapi/syncable/file_change.cc ('k') | webkit/fileapi/syncable/local_file_change_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698