HomeSort by relevance Sort by last modified time
    Searched refs:chrome_exe (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/win8/delegate_execute/
chrome_util.h 17 void UpdateChromeIfNeeded(const base::FilePath& chrome_exe);
chrome_util.cc 44 // Returns the name of the global event used to detect if |chrome_exe| is in
48 base::string16 GetEventName(const base::FilePath& chrome_exe) {
52 name.reserve(prefix_len + chrome_exe.value().size());
54 name.append(chrome_exe.value());
61 // Returns true if |chrome_exe| is in use by a browser process. In this case,
63 bool IsBrowserRunning(const base::FilePath& chrome_exe) {
65 SYNCHRONIZE, FALSE, GetEventName(chrome_exe).c_str()));
77 // |chrome_exe|.
78 bool NewChromeExeExists(const base::FilePath& chrome_exe) {
79 base::FilePath new_chrome_exe(chrome_exe.DirName().Append(kNewChromeExe))
    [all...]
delegate_execute_util.h 20 // Returns a CommandLine to launch |chrome_exe| with all switches and arguments
22 base::CommandLine MakeChromeCommandLine(const base::FilePath& chrome_exe,
delegate_execute_util.cc 25 CommandLine MakeChromeCommandLine(const base::FilePath& chrome_exe,
29 chrome_cmd.SetProgram(chrome_exe);
command_execute_impl.cc 311 bool CommandExecuteImpl::FindChromeExe(base::FilePath* chrome_exe) {
320 *chrome_exe = dir_exe.DirName().Append(chrome::kBrowserProcessExecutableName);
321 if (!base::PathExists(*chrome_exe)) {
322 *chrome_exe = dir_exe.Append(chrome::kBrowserProcessExecutableName);
323 if (!base::PathExists(*chrome_exe)) {
436 base::FilePath chrome_exe; local
437 if (!FindChromeExe(&chrome_exe) ||
438 ShellUtil::GetChromeDefaultStateFromPath(chrome_exe) !=
command_execute_impl.h 84 static bool FindChromeExe(base::FilePath* chrome_exe);
  /external/chromium_org/chrome/browser/metrics/variations/
variations_registry_syncer_win.cc 44 base::FilePath chrome_exe; local
45 if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
50 !InstallUtil::IsPerUserInstall(chrome_exe.value().c_str());
  /external/chromium_org/chrome/installer/util/
shell_util.h 302 // Returns true if |chrome_exe| is registered in HKLM with |suffix|.
303 // Note: This only checks one deterministic key in HKLM for |chrome_exe| and
306 const base::string16& chrome_exe,
344 // |chrome_exe|: the full path to chrome.exe
345 static base::string16 GetChromeShellOpenCmd(const base::string16& chrome_exe);
350 // |chrome_exe|: the full path to chrome.exe
352 const base::string16& chrome_exe);
379 // |chrome_exe| The path to the currently installed (or running) chrome.exe.
382 const base::string16& chrome_exe);
390 const base::string16& chrome_exe);
    [all...]
shell_util.cc 222 const base::string16& chrome_exe,
227 chrome_exe,
229 base::string16 open_cmd(ShellUtil::GetChromeShellOpenCmd(chrome_exe));
231 ShellUtil::GetChromeDelegateCommand(chrome_exe));
236 dist, InstallUtil::IsPerUserInstall(chrome_exe.c_str())));
355 const base::string16& chrome_exe,
360 chrome_exe,
362 const base::string16 quoted_exe_path(L"\"" + chrome_exe + L"\"");
436 static void GetAppRegistrationEntries(const base::string16& chrome_exe,
439 const base::FilePath chrome_path(chrome_exe);
    [all...]
auto_launch_util.cc 76 base::FilePath chrome_exe(application_path);
77 if (chrome_exe.empty()) {
78 if (!PathService::Get(base::DIR_EXE, &chrome_exe)) {
83 chrome_exe = chrome_exe.Append(installer::kChromeExe);
85 if (autolaunch.find(chrome_exe.value()) == base::string16::npos)
google_update_util.cc 151 base::FilePath chrome_exe; local
152 if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
159 chrome_exe.value().c_str());
  /external/chromium_org/chrome/browser/metro_utils/
metro_chrome_win.cc 27 base::FilePath chrome_exe;
28 if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
35 InstallUtil::IsPerUserInstall(chrome_exe.value().c_str()));
  /external/chromium_org/chrome/browser/
shell_integration_win.cc 140 base::FilePath chrome_exe; local
141 if (!PathService::Get(base::FILE_EXE, &chrome_exe))
175 ShellIntegration::MigrateShortcutsInPathInternal(chrome_exe, path,
262 base::FilePath chrome_exe; local
263 if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
271 chrome_exe.value(), true)) {
284 base::FilePath chrome_exe;
285 if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
292 if (!ShellUtil::MakeChromeDefaultProtocolClient(dist, chrome_exe.value(),
304 base::FilePath chrome_exe; local
322 base::FilePath chrome_exe; local
408 base::FilePath chrome_exe; local
    [all...]
shell_integration.h 145 // Migrates all shortcuts in |path| which point to |chrome_exe| such that they
152 static int MigrateShortcutsInPathInternal(const base::FilePath& chrome_exe,
157 static base::FilePath GetStartMenuShortcut(const base::FilePath& chrome_exe);
  /external/chromium_org/chrome/browser/first_run/
upgrade_util_win.cc 76 base::FilePath GetMetroRelauncherPath(const base::FilePath& chrome_exe,
78 base::FilePath path(chrome_exe.DirName());
146 base::FilePath chrome_exe; local
147 if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
156 chrome_exe.DirName().Append(installer::kChromeExe));
190 ShellIntegration::GetStartMenuShortcut(chrome_exe));
199 base::string16 path(GetMetroRelauncherPath(chrome_exe, version_str).value());
first_run_internal_win.cc 129 base::FilePath chrome_exe; local
130 if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
132 } else if (!InstallUtil::IsPerUserInstall(chrome_exe.value().c_str())) {
  /external/chromium_org/chrome/installer/setup/
uninstall.h 56 const base::string16& chrome_exe);
install.cc 251 const base::FilePath& chrome_exe) {
473 const base::string16 chrome_exe(
475 VLOG(1) << "Registering Chrome as browser: " << chrome_exe;
480 ShellUtil::MakeChromeDefault(dist, level, chrome_exe, true);
482 ShellUtil::RegisterChromeBrowser(dist, chrome_exe, base::string16(), false);
554 const base::FilePath chrome_exe(
556 CleanupLegacyShortcuts(installer_state, chrome_dist, chrome_exe);
577 CreateOrUpdateShortcuts(chrome_exe, *chrome_product, prefs, install_level,
649 base::FilePath chrome_exe(installer_state.target_path().Append(kChromeExe));
651 chrome_exe, chrome, prefs, level, INSTALL_SHORTCUT_REPLACE_EXISTING)
    [all...]
setup_main.cc 229 base::FilePath chrome_exe(target_path.Append(installer::kChromeExe));
245 install_list->AddMoveTreeWorkItem(chrome_exe.value(),
250 chrome_exe.value(),
584 base::FilePath chrome_exe = local
586 CommandLine cmd(chrome_exe);
1573 base::string16 chrome_exe; local
    [all...]
uninstall.cc     [all...]
  /external/chromium_org/chrome/browser/ui/views/app_list/win/
app_list_service_win.cc 104 base::FilePath chrome_exe; local
105 if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
109 CommandLine command_line(chrome_exe);
184 base::FilePath chrome_exe; local
185 if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
195 shortcut_properties.set_target(chrome_exe);
196 shortcut_properties.set_working_dir(chrome_exe.DirName());
199 shortcut_properties.set_icon(chrome_exe, GetAppListIconIndex());
  /external/chromium_org/chrome/browser/profiles/
profile_shortcut_manager_win.cc 265 const base::FilePath& chrome_exe,
277 return ConvertToLongPath(target_path) == ConvertToLongPath(chrome_exe);
283 void ListDesktopShortcutsWithCommandLine(const base::FilePath& chrome_exe,
296 if (!IsChromeShortcut(path, chrome_exe, &shortcut_command_line))
408 base::FilePath chrome_exe; local
409 if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
433 product.AddDefaultShortcutProperties(chrome_exe, &properties);
457 ListDesktopShortcutsWithCommandLine(chrome_exe, command_line,
478 // Returns true if any desktop shortcuts exist with target |chrome_exe|,
480 bool ChromeDesktopShortcutsExist(const base::FilePath& chrome_exe) {
504 base::FilePath chrome_exe; local
555 base::FilePath chrome_exe; local
707 base::FilePath chrome_exe; local
    [all...]
  /external/chromium_org/chrome/browser/profile_resetter/
profile_resetter.cc 43 base::FilePath chrome_exe; local
44 if (!PathService::Get(base::FILE_EXE, &chrome_exe))
54 chrome_exe, local
334 base::FilePath chrome_exe; local
335 if (!PathService::Get(base::FILE_EXE, &chrome_exe))
348 chrome_exe, local
  /external/chromium_org/win8/test/
metro_registration_helper.cc 44 base::FilePath chrome_exe(dir.Append(kChromeExe));
47 if (!base::PathExists(chrome_exe) || !base::PathExists(registrar)) {
  /external/chromium_org/chrome/browser/google/
google_update_win.cc 257 base::FilePath chrome_exe; local
258 if (!PathService::Get(base::DIR_EXE, &chrome_exe))
261 GoogleUpdateErrorCode error_code = CanUpdateCurrentChrome(chrome_exe);
295 if (InstallUtil::IsPerUserInstall(chrome_exe.value().c_str())) {

Completed in 690 milliseconds

1 2