| Index: chrome/browser/sync_file_system/syncable_file_system_util_unittest.cc
 | 
| diff --git a/chrome/browser/sync_file_system/syncable_file_system_util_unittest.cc b/chrome/browser/sync_file_system/syncable_file_system_util_unittest.cc
 | 
| index b3804b41a9869d7558ce87d582d556a7add5b650..31bc00d7c527d325cbb31eaa244dd1e6b72b3aad 100644
 | 
| --- a/chrome/browser/sync_file_system/syncable_file_system_util_unittest.cc
 | 
| +++ b/chrome/browser/sync_file_system/syncable_file_system_util_unittest.cc
 | 
| @@ -112,44 +112,6 @@ TEST(SyncableFileSystemUtilTest,
 | 
|    RevokeSyncableFileSystem();
 | 
|  }
 | 
|  
 | 
| -TEST(SyncableFileSystemUtilTest, SerializeBeforeOpenFileSystem) {
 | 
| -  ScopedEnableSyncFSDirectoryOperation enable_directory_operation_;
 | 
| -  const std::string serialized = kSyncableFileSystemRootURI +
 | 
| -      CreateNormalizedFilePath(kPath).AsUTF8Unsafe();
 | 
| -  FileSystemURL deserialized;
 | 
| -  base::MessageLoop message_loop;
 | 
| -
 | 
| -  // Setting up a full syncable filesystem environment.
 | 
| -  CannedSyncableFileSystem file_system(GURL(kOrigin),
 | 
| -                                       base::MessageLoopProxy::current().get(),
 | 
| -                                       base::MessageLoopProxy::current().get());
 | 
| -  file_system.SetUp();
 | 
| -  scoped_refptr<LocalFileSyncContext> sync_context =
 | 
| -      new LocalFileSyncContext(base::FilePath(),
 | 
| -                               base::MessageLoopProxy::current().get(),
 | 
| -                               base::MessageLoopProxy::current().get());
 | 
| -
 | 
| -  // Before calling initialization we would not be able to get a valid
 | 
| -  // deserialized URL.
 | 
| -  EXPECT_FALSE(DeserializeSyncableFileSystemURL(serialized, &deserialized));
 | 
| -  EXPECT_FALSE(deserialized.is_valid());
 | 
| -
 | 
| -  ASSERT_EQ(sync_file_system::SYNC_STATUS_OK,
 | 
| -            file_system.MaybeInitializeFileSystemContext(sync_context.get()));
 | 
| -
 | 
| -  // After initialization this should be ok (even before opening the file
 | 
| -  // system).
 | 
| -  EXPECT_TRUE(DeserializeSyncableFileSystemURL(serialized, &deserialized));
 | 
| -  EXPECT_TRUE(deserialized.is_valid());
 | 
| -
 | 
| -  // Shutting down.
 | 
| -  file_system.TearDown();
 | 
| -  RevokeSyncableFileSystem();
 | 
| -  sync_context->ShutdownOnUIThread();
 | 
| -  sync_context = NULL;
 | 
| -  base::MessageLoop::current()->RunUntilIdle();
 | 
| -}
 | 
| -
 | 
|  TEST(SyncableFileSystemUtilTest, SyncableFileSystemURL_IsParent) {
 | 
|    RegisterSyncableFileSystem();
 | 
|  
 | 
| 
 |