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

Side by Side Diff: webkit/browser/fileapi/syncable/syncable_file_system_util_unittest.cc

Issue 15806012: Move webkit/fileapi/syncable/* code to webkit/browser/fileapi (final!) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "webkit/fileapi/syncable/syncable_file_system_util.h" 5 #include "webkit/browser/fileapi/syncable/syncable_file_system_util.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "base/message_loop_proxy.h" 9 #include "base/message_loop_proxy.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "webkit/browser/fileapi/external_mount_points.h" 11 #include "webkit/browser/fileapi/external_mount_points.h"
12 #include "webkit/browser/fileapi/syncable/canned_syncable_file_system.h"
13 #include "webkit/browser/fileapi/syncable/local_file_sync_context.h"
12 #include "webkit/common/fileapi/file_system_types.h" 14 #include "webkit/common/fileapi/file_system_types.h"
13 #include "webkit/fileapi/syncable/canned_syncable_file_system.h"
14 #include "webkit/fileapi/syncable/local_file_sync_context.h"
15 15
16 using fileapi::ExternalMountPoints; 16 using fileapi::ExternalMountPoints;
17 using fileapi::FileSystemURL; 17 using fileapi::FileSystemURL;
18 using fileapi::ScopedExternalFileSystem; 18 using fileapi::ScopedExternalFileSystem;
19 19
20 namespace sync_file_system { 20 namespace sync_file_system {
21 21
22 namespace { 22 namespace {
23 23
24 const char kSyncableFileSystemRootURI[] = 24 const char kSyncableFileSystemRootURI[] =
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 CreateFileSystemURL(root2 + child))); 168 CreateFileSystemURL(root2 + child)));
169 169
170 // False case: different filesystem ID. 170 // False case: different filesystem ID.
171 EXPECT_FALSE(CreateFileSystemURL(root1 + parent).IsParent( 171 EXPECT_FALSE(CreateFileSystemURL(root1 + parent).IsParent(
172 CreateFileSystemURL(root2 + child))); 172 CreateFileSystemURL(root2 + child)));
173 EXPECT_FALSE(CreateFileSystemURL(root2 + parent).IsParent( 173 EXPECT_FALSE(CreateFileSystemURL(root2 + parent).IsParent(
174 CreateFileSystemURL(root1 + child))); 174 CreateFileSystemURL(root1 + child)));
175 } 175 }
176 176
177 } // namespace sync_file_system 177 } // namespace sync_file_system
OLDNEW
« no previous file with comments | « webkit/browser/fileapi/syncable/syncable_file_system_util.cc ('k') | webkit/browser/fileapi/webkit_browser_fileapi.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698