Home
last modified time | relevance | path

Searched refs:exe_dir (Results 1 – 5 of 5) sorted by relevance

/third_party/cef/patch/patches/
Dlinux_assets_path_1936.patch8 base::FilePath exe_dir;
9 - bool result = base::PathService::Get(base::BasePathKey::DIR_EXE, &exe_dir);
10 + bool result = base::PathService::Get(base::BasePathKey::DIR_ASSETS, &exe_dir);
12 base::File file(exe_dir.Append(path),
21 base::FilePath exe_dir;
22 - if (base::PathService::Get(base::DIR_EXE, &exe_dir)) {
23 + if (base::PathService::Get(base::DIR_ASSETS, &exe_dir)) {
24 base::FilePath sandbox_candidate = exe_dir.AppendASCII("chrome-sandbox");
Dcrashpad_1995.patch272 + const std::wstring& exe_dir) {
273 + return exe_dir + L"\\crashpad_handler.exe";
350 + virtual std::wstring GetCrashExternalHandler(const std::wstring& exe_dir);
559 base::FilePath exe_dir = exe_file.DirName();
560 - exe_file = exe_dir.Append(FILE_PATH_LITERAL("crashpad_handler.exe"));
562 + crash_reporter_client->GetCrashExternalHandler(exe_dir.value()));
/third_party/python/Lib/
Dsite.py501 exe_dir, _ = os.path.split(os.path.abspath(executable))
502 site_prefix = os.path.dirname(exe_dir)
507 os.path.join(exe_dir, conf_basename),
/third_party/cef/libcef/common/
Dcrash_reporter_client.cc703 const std::wstring& exe_dir) { in GetCrashExternalHandler() argument
705 return CrashReporterClient::GetCrashExternalHandler(exe_dir); in GetCrashExternalHandler()
709 joinPath(base::WideToUTF8(exe_dir), external_handler_)); in GetCrashExternalHandler()
Dcrash_reporter_client.h85 std::wstring GetCrashExternalHandler(const std::wstring& exe_dir) override;