Searched defs:path_to_create (Results 1 - 2 of 2) sorted by path

/external/chromium_org/base/files/
H A Dfile_util_win.cc343 FilePath path_to_create; local
354 path_to_create = base_dir.Append(new_dir_name);
355 if (::CreateDirectory(path_to_create.value().c_str(), NULL)) {
356 *new_dir = path_to_create;
/external/chromium_org/chrome/browser/profile_resetter/
H A Dprofile_resetter_unittest.cc313 base::FilePath path_to_create; local
314 EXPECT_TRUE(PathService::Get(base::DIR_USER_DESKTOP, &path_to_create));
315 path_to_create = path_to_create.Append(name);
316 EXPECT_FALSE(base::PathExists(path_to_create)) << path_to_create.value();
324 path_to_create, shortcut_properties,
325 base::win::SHORTCUT_CREATE_ALWAYS)) << path_to_create.value();
326 shortcut_path_ = path_to_create;

Completed in 217 milliseconds