Home | History | Annotate | Download | only in local

Lines Matching refs:kPath

456   const FileSystemURL kPath(file_system_->URL("foo"));
461 // We should get called OnSyncEnabled and OnWriteEnabled on kPath and
464 EXPECT_CALL(status_observer, OnSyncEnabled(kPath)).Times(AtLeast(1));
470 EXPECT_EQ(base::File::FILE_OK, file_system_->CreateFile(kPath));
471 EXPECT_EQ(base::File::FILE_OK, file_system_->Remove(kPath, false));
472 EXPECT_EQ(base::File::FILE_OK, file_system_->CreateDirectory(kPath));
481 EXPECT_CALL(local_change_processor, ApplyLocalChange(_, _, _, kPath, _))
487 // OnWriteEnabled will be notified on kPath (in multi-threaded this
489 EXPECT_CALL(status_observer, OnWriteEnabled(kPath)).Times(AtLeast(0));
493 SYNC_STATUS_OK, kPath));