HomeSort by relevance Sort by last modified time
    Searched defs:dest_directory (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/browser/chromeos/drive/
file_cache_unittest.cc 99 const base::FilePath dest_directory = temp_dir_.path().AppendASCII("dest"); local
100 EXPECT_TRUE(cache_->RecoverFilesFromCacheDirectory(dest_directory,
104 EXPECT_TRUE(base::PathExists(dest_directory));
106 if (base::PathExists(dest_directory.AppendASCII("baz00000001.png"))) {
109 dest_directory.AppendASCII("baz00000001.png")));
112 dest_directory.AppendASCII("image00000002.png")));
116 dest_directory.AppendASCII("image00000001.png")));
119 dest_directory.AppendASCII("baz00000002.png")));
122 dest_directory.AppendASCII("image00000003.png")));
drive_integration_service.cc 147 base::FilePath dest_directory = downloads_directory.Append( local
149 for (int uniquifier = 1; base::PathExists(dest_directory); ++uniquifier) {
150 dest_directory = downloads_directory.Append(
162 << "Recovering cache files to " << dest_directory.value();
163 if (!cache->RecoverFilesFromCacheDirectory(dest_directory,

Completed in 35 milliseconds