| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/sync_file_system/syncable_file_system_util.h" | 5 #include "chrome/browser/sync_file_system/syncable_file_system_util.h" |
| 6 | 6 |
| 7 #include "base/files/scoped_temp_dir.h" | 7 #include "base/files/scoped_temp_dir.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "chrome/browser/sync_file_system/local/canned_syncable_file_system.h" | 10 #include "chrome/browser/sync_file_system/local/canned_syncable_file_system.h" |
| 11 #include "chrome/browser/sync_file_system/local/local_file_sync_context.h" | 11 #include "chrome/browser/sync_file_system/local/local_file_sync_context.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 13 #include "webkit/browser/fileapi/external_mount_points.h" | 13 #include "storage/browser/fileapi/external_mount_points.h" |
| 14 #include "webkit/common/fileapi/file_system_types.h" | 14 #include "storage/common/fileapi/file_system_types.h" |
| 15 | 15 |
| 16 using fileapi::ExternalMountPoints; | 16 using storage::ExternalMountPoints; |
| 17 using fileapi::FileSystemURL; | 17 using storage::FileSystemURL; |
| 18 | 18 |
| 19 namespace sync_file_system { | 19 namespace sync_file_system { |
| 20 | 20 |
| 21 namespace { | 21 namespace { |
| 22 | 22 |
| 23 const char kSyncableFileSystemRootURI[] = | 23 const char kSyncableFileSystemRootURI[] = |
| 24 "filesystem:http://www.example.com/external/syncfs/"; | 24 "filesystem:http://www.example.com/external/syncfs/"; |
| 25 const char kNonRegisteredFileSystemRootURI[] = | 25 const char kNonRegisteredFileSystemRootURI[] = |
| 26 "filesystem:http://www.example.com/external/non_registered/"; | 26 "filesystem:http://www.example.com/external/non_registered/"; |
| 27 const char kNonSyncableFileSystemRootURI[] = | 27 const char kNonSyncableFileSystemRootURI[] = |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 // False case: different origin. | 131 // False case: different origin. |
| 132 EXPECT_FALSE(CreateFileSystemURL(root1 + parent).IsParent( | 132 EXPECT_FALSE(CreateFileSystemURL(root1 + parent).IsParent( |
| 133 CreateFileSystemURL(root2 + child))); | 133 CreateFileSystemURL(root2 + child))); |
| 134 EXPECT_FALSE(CreateFileSystemURL(root2 + parent).IsParent( | 134 EXPECT_FALSE(CreateFileSystemURL(root2 + parent).IsParent( |
| 135 CreateFileSystemURL(root1 + child))); | 135 CreateFileSystemURL(root1 + child))); |
| 136 | 136 |
| 137 RevokeSyncableFileSystem(); | 137 RevokeSyncableFileSystem(); |
| 138 } | 138 } |
| 139 | 139 |
| 140 } // namespace sync_file_system | 140 } // namespace sync_file_system |
| OLD | NEW |