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

  /external/chromium/chrome/common/
chrome_paths_unittest.cc 17 FilePath test_profile_dir, cache_dir; local
19 ASSERT_TRUE(PathService::Get(base::DIR_APP_DATA, &test_profile_dir));
20 test_profile_dir = test_profile_dir.Append("foobar");
28 test_profile_dir = homedir.Append(".config/foobar");
35 chrome::GetUserCacheDirectory(test_profile_dir, &cache_dir);
41 test_profile_dir = FilePath(FILE_PATH_LITERAL("/some/other/path"));
42 chrome::GetUserCacheDirectory(test_profile_dir, &cache_dir);
43 EXPECT_EQ(test_profile_dir.value(), cache_dir.value());
  /external/chromium_org/chrome/common/
chrome_paths_unittest.cc 18 base::FilePath test_profile_dir, cache_dir; local
20 ASSERT_TRUE(PathService::Get(base::DIR_APP_DATA, &test_profile_dir));
21 test_profile_dir = test_profile_dir.Append("foobar");
26 // No matter what the test_profile_dir is, Android always use the
35 test_profile_dir = homedir.Append(".config/foobar");
42 chrome::GetUserCacheDirectory(test_profile_dir, &cache_dir);
48 test_profile_dir = base::FilePath(FILE_PATH_LITERAL("/some/other/path"));
49 chrome::GetUserCacheDirectory(test_profile_dir, &cache_dir);
53 EXPECT_EQ(test_profile_dir.value(), cache_dir.value())
    [all...]

Completed in 41 milliseconds