Home
last modified time | relevance | path

Searched refs:profile_path (Results 1 – 22 of 22) sorted by relevance

/external/chromium/chrome/browser/
Dshell_integration_win.cc41 std::wstring GetProfileIdFromPath(const FilePath& profile_path) { in GetProfileIdFromPath() argument
43 if (profile_path.empty()) in GetProfileIdFromPath()
50 profile_path.DirName() == default_user_data_dir && in GetProfileIdFromPath()
51 profile_path.BaseName().value() == in GetProfileIdFromPath()
57 std::wstring basenames = profile_path.DirName().BaseName().value() + in GetProfileIdFromPath()
58 L"." + profile_path.BaseName().value(); in GetProfileIdFromPath()
221 FilePath profile_path; in GetExpectedAppId() local
223 profile_path = in GetExpectedAppId()
239 expected_app_id->assign(ShellIntegration::GetAppId(app_name, profile_path)); in GetExpectedAppId()
398 const FilePath& profile_path) { in GetAppId() argument
[all …]
Dshell_integration_unittest.cc328 FilePath profile_path(FILE_PATH_LITERAL("root")); in TEST() local
329 profile_path = profile_path.Append(FILE_PATH_LITERAL("udd")); in TEST()
330 profile_path = profile_path.Append(FILE_PATH_LITERAL("User Data - Test")); in TEST()
333 ShellIntegration::GetChromiumAppId(profile_path)); in TEST()
Dshell_integration.h115 const FilePath& profile_path);
119 static std::wstring GetChromiumAppId(const FilePath& profile_path);
Dtransport_security_persister.cc25 net::TransportSecurityState* state, const FilePath& profile_path) { in Initialize() argument
29 profile_path.Append(FILE_PATH_LITERAL("TransportSecurity")); in Initialize()
Duser_style_sheet_watcher.cc128 UserStyleSheetWatcher::UserStyleSheetWatcher(const FilePath& profile_path) in UserStyleSheetWatcher() argument
129 : profile_path_(profile_path), in UserStyleSheetWatcher()
Dbrowser_process_impl.cc146 FilePath profile_path; in ~BrowserProcessImpl() local
150 clear_local_state_on_exit = ShouldClearLocalState(&profile_path); in ~BrowserProcessImpl()
280 ClearLocalState(profile_path); in ~BrowserProcessImpl()
663 void BrowserProcessImpl::ClearLocalState(const FilePath& profile_path) { in ClearLocalState() argument
664 webkit_database::DatabaseTracker::ClearLocalState(profile_path); in ClearLocalState()
667 bool BrowserProcessImpl::ShouldClearLocalState(FilePath* profile_path) { in ShouldClearLocalState() argument
682 *profile_path = profile->GetPath(); in ShouldClearLocalState()
Dtransport_security_persister.h48 const FilePath& profile_path);
Duser_style_sheet_watcher.h27 explicit UserStyleSheetWatcher(const FilePath& profile_path);
Dbrowser_process_impl.h115 void ClearLocalState(const FilePath& profile_path);
116 bool ShouldClearLocalState(FilePath* profile_path);
/external/chromium/chrome/browser/bookmarks/
Dbookmark_pasteboard_helper_mac.h20 FilePath::StringType profile_path);
26 FilePath::StringType profile_path);
30 FilePath::StringType* profile_path);
34 FilePath::StringType* profile_path);
Dbookmark_pasteboard_helper_mac.mm226 FilePath::StringType profile_path) {
238 [pb setString:base::SysUTF8ToNSString(profile_path)
247 FilePath::StringType* profile_path) {
250 profile_path->assign(base::SysNSStringToUTF8(profile));
270 FilePath::StringType profile_path) {
272 WriteToClipboardPrivate(elements, pb, profile_path);
277 FilePath::StringType profile_path) {
279 WriteToClipboardPrivate(elements, pb, profile_path);
283 FilePath::StringType* profile_path) {
285 return ReadFromClipboardPrivate(elements, pb, profile_path);
[all …]
/external/chromium/chrome/browser/importer/
Dfirefox_importer_utils.h45 bool GetFirefoxVersionAndPathFromProfile(const FilePath& profile_path,
80 const FilePath& profile_path);
83 GURL GetHomepage(const FilePath& profile_path);
Dfirefox_importer_utils.cc94 bool GetFirefoxVersionAndPathFromProfile(const FilePath& profile_path, in GetFirefoxVersionAndPathFromProfile() argument
98 FilePath compatibility_file = profile_path.AppendASCII("compatibility.ini"); in GetFirefoxVersionAndPathFromProfile()
283 std::string ReadPrefsJsValue(const FilePath& profile_path, in ReadPrefsJsValue() argument
286 if (!ReadPrefFile(profile_path.AppendASCII("prefs.js"), &content)) in ReadPrefsJsValue()
294 const FilePath& profile_path) { in GetFirefoxDefaultSearchEngineIndex() argument
302 ReadPrefsJsValue(profile_path, "browser.search.selectedEngine"); in GetFirefoxDefaultSearchEngineIndex()
328 GURL GetHomepage(const FilePath& profile_path) { in GetHomepage() argument
330 ReadPrefsJsValue(profile_path, "browser.startup.homepage"); in GetHomepage()
Dimporter_list.cc55 FilePath profile_path = GetFirefoxProfilePath(); in DetectFirefoxProfiles() local
56 if (profile_path.empty()) in DetectFirefoxProfiles()
67 GetFirefoxVersionAndPathFromProfile(profile_path, &version, &app_path); in DetectFirefoxProfiles()
81 firefox->source_path = profile_path; in DetectFirefoxProfiles()
Dfirefox_proxy_settings.cc91 FilePath profile_path = GetFirefoxProfilePath(); in GetSettings() local
92 if (profile_path.empty()) in GetSettings()
94 FilePath pref_file = profile_path.AppendASCII(kPrefFileName); in GetSettings()
Dfirefox3_importer.cc382 FilePath profile_path = source_path_.AppendASCII("searchplugins"); in GetSearchEnginesXMLFiles() local
404 file = profile_path.Append( in GetSearchEnginesXMLFiles()
/external/chromium/chrome/browser/web_applications/
Dweb_app.h43 const FilePath& profile_path,
51 FilePath GetDataDir(const FilePath& profile_path);
Dweb_app.cc154 CreateShortcutTask(const FilePath& profile_path,
200 const FilePath& profile_path, in CreateShortcutTask() argument
204 web_app::GetDataDir(profile_path), in CreateShortcutTask()
206 profile_path_(profile_path), in CreateShortcutTask()
503 FilePath GetDataDir(const FilePath& profile_path) { in GetDataDir() argument
504 return profile_path.Append(chrome::kWebAppDirname); in GetDataDir()
/external/chromium/third_party/libjingle/source/talk/base/
Dproxydetect.cc429 bool GetDefaultFirefoxProfile(Pathname* profile_path) { in GetDefaultFirefoxProfile() argument
430 ASSERT(NULL != profile_path); in GetDefaultFirefoxProfile()
485 profile_path->SetPathname(candidate.pathname()); in GetDefaultFirefoxProfile()
498 profile_path->SetPathname(path); in GetDefaultFirefoxProfile()
/external/chromium/chrome/browser/webdata/
Dweb_data_service.h285 bool Init(const FilePath& profile_path);
Dweb_data_service.cc59 bool WebDataService::Init(const FilePath& profile_path) { in Init() argument
60 FilePath path = profile_path; in Init()
/external/chromium/chrome/browser/chromeos/cros/
Dnetwork_library.cc3219 const char* profile_path, in ProfileUpdate() argument
3224 LOG(ERROR) << "Error retrieving profile: " << profile_path; in ProfileUpdate()
3227 VLOG(1) << "Received ProfileUpdate for: " << profile_path; in ProfileUpdate()
3233 networklib->UpdateRememberedServiceList(profile_path, entries); in ProfileUpdate()
3564 void UpdateRememberedServiceList(const char* profile_path, in UpdateRememberedServiceList() argument
3588 RequestNetworkProfileEntry(profile_path, in UpdateRememberedServiceList()