Home
last modified time | relevance | path

Searched refs:profile_dir (Results 1 – 11 of 11) sorted by relevance

/external/chromium/chrome/browser/extensions/
Dextension_startup_browsertest.cc39 FilePath profile_dir; in SetUpCommandLine() local
40 PathService::Get(chrome::DIR_USER_DATA, &profile_dir); in SetUpCommandLine()
41 profile_dir = profile_dir.AppendASCII("Default"); in SetUpCommandLine()
42 file_util::CreateDirectory(profile_dir); in SetUpCommandLine()
44 preferences_file_ = profile_dir.AppendASCII("Preferences"); in SetUpCommandLine()
45 user_scripts_dir_ = profile_dir.AppendASCII("User Scripts"); in SetUpCommandLine()
46 extensions_dir_ = profile_dir.AppendASCII("Extensions"); in SetUpCommandLine()
57 profile_dir, true); // recursive in SetUpCommandLine()
/external/chromium/chrome/browser/profiles/
Dprofile_manager.cc109 const FilePath &profile_dir) { in GetProfilePrefsPath() argument
110 FilePath default_prefs_path(profile_dir); in GetProfilePrefsPath()
120 FilePath profile_dir; in GetCurrentProfileDir() local
123 profile_dir = command_line.GetSwitchValuePath(switches::kLoginProfile); in GetCurrentProfileDir()
129 relative_profile_dir = relative_profile_dir.Append(profile_dir); in GetCurrentProfileDir()
208 Profile* ProfileManager::GetProfile(const FilePath& profile_dir) { in GetProfile() argument
211 Profile* profile = GetProfileByPath(profile_dir); in GetProfile()
215 profile = Profile::CreateProfile(profile_dir); in GetProfile()
Dprofile_manager_unittest.cc95 std::string profile_dir("my_user"); in TEST_F() local
109 std::string profile_dir("my_user"); in TEST_F() local
111 cl->AppendSwitchASCII(switches::kLoginProfile, profile_dir); in TEST_F()
122 FilePath expected_logged_in(profile_dir); in TEST_F()
Dprofile_manager.h57 Profile* GetProfile(const FilePath& profile_dir);
101 static FilePath GetProfilePrefsPath(const FilePath& profile_dir);
/external/chromium/chrome/common/
Dchrome_paths_linux.cc41 void GetUserCacheDirectory(const FilePath& profile_dir, FilePath* result) { in GetUserCacheDirectory() argument
51 *result = profile_dir; in GetUserCacheDirectory()
62 if (!config_dir.AppendRelativePath(profile_dir, &cache_dir)) in GetUserCacheDirectory()
Dchrome_paths_win.cc40 void GetUserCacheDirectory(const FilePath& profile_dir, FilePath* result) { in GetUserCacheDirectory() argument
42 *result = profile_dir; in GetUserCacheDirectory()
Dchrome_paths_internal.h31 void GetUserCacheDirectory(const FilePath& profile_dir, FilePath* result);
Dchrome_paths_mac.mm103 void GetUserCacheDirectory(const FilePath& profile_dir, FilePath* result) {
111 *result = profile_dir;
119 if (!app_data_dir.AppendRelativePath(profile_dir, &cache_dir))
/external/chromium/chrome/browser/visitedlink/
Dvisitedlink_master.cc661 FilePath profile_dir = profile_->GetPath(); in GetDatabaseFileName() local
662 *filename = profile_dir.Append(FILE_PATH_LITERAL("Visited Links")); in GetDatabaseFileName()
/external/chromium/chrome/browser/importer/
Dfirefox2_importer.cc396 FilePath profile_dir = source_path_.AppendASCII("searchplugins"); in GetSearchEnginesXMLFiles() local
397 FindXMLFilesInDir(profile_dir, files); in GetSearchEnginesXMLFiles()
Dimporter_unittest.cc71 void Firefox3xImporterTest(std::string profile_dir, in Firefox3xImporterTest() argument
77 data_path = data_path.AppendASCII(profile_dir); in Firefox3xImporterTest()