Searched defs:install_path (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/chrome/installer/util/
H A Dhelper.cc19 base::FilePath install_path; local
28 if (PathService::Get(key, &install_path)) {
29 install_path = install_path.Append(dist->GetInstallSubDir());
30 install_path = install_path.Append(kInstallBinaryDir);
32 return install_path;
/external/chromium_org/chrome/browser/extensions/
H A Dsandboxed_unpacker_unittest.cc114 base::FilePath install_path = local
116 EXPECT_FALSE(base::PathExists(install_path));
122 base::FilePath install_path = local
124 EXPECT_TRUE(base::PathExists(install_path));
H A Dextension_service_unittest.cc4672 base::FilePath install_path = extensions_install_dir().AppendASCII(id); local
4675 ASSERT_TRUE(base::PathExists(install_path));
4678 ASSERT_FALSE(base::PathExists(install_path));
4717 ASSERT_FALSE(base::PathExists(install_path));
/external/chromium_org/chrome/browser/ui/pdf/
H A Dadobe_reader_info_win.cc128 base::FilePath install_path = GetInstalledPath(kRegistryAcrobatReader);
129 if (install_path.empty())
130 install_path = GetInstalledPath(kRegistryAcrobat);
131 if (install_path.empty())
135 bool found = app_cmd.find(install_path.value()) != base::string16::npos;
137 *path = install_path;
166 base::FilePath install_path; local
167 bool is_default = IsAdobeReaderDefaultPDFViewerInternal(&install_path);
172 FileVersionInfo::CreateFileVersionInfo(install_path));
/external/chromium_org/components/component_updater/
H A Ddefault_component_installer.cc66 const base::FilePath& install_path) {
67 if (!base::Move(unpack_path, install_path))
69 if (!installer_traits_->OnCustomInstall(manifest, install_path))
71 if (!installer_traits_->VerifyInstallation(install_path))
85 base::FilePath install_path =
87 if (base::PathExists(install_path)) {
88 if (!base::DeleteFile(install_path, true))
91 if (!InstallHelper(manifest, unpack_path, install_path)) {
92 base::DeleteFile(install_path, true);
63 InstallHelper( const base::DictionaryValue& manifest, const base::FilePath& unpack_path, const base::FilePath& install_path) argument
/external/chromium_org/chrome/installer/setup/
H A Dinstall_worker_unittest.cc204 base::FilePath install_path = local
207 install_path.AppendASCII(current_version_->GetString())
234 base::FilePath install_path = local
237 install_path.AppendASCII(current_version_->GetString())
266 base::FilePath install_path = local
269 install_path.AppendASCII(current_version_->GetString())
/external/chromium_org/cloud_print/virtual_driver/win/install/
H A Dsetup.cc103 HRESULT RegisterPortMonitor(bool install, const base::FilePath& install_path) { argument
104 DCHECK(install || install_path.empty());
112 install_path.Append(GetPortMonitorDllName());
250 HRESULT InstallDriver(const base::FilePath& install_path) { argument
267 base::FilePath data_file = install_path.Append(kDataFileName);
389 HRESULT RegisterVirtualDriver(const base::FilePath& install_path) { argument
392 DCHECK(base::DirectoryExists(install_path));
398 result = InstallDriver(install_path);
404 result = RegisterPortMonitor(true, install_path);
468 HRESULT DoRegister(const base::FilePath& install_path) { argument
475 DoDelete(const base::FilePath& install_path) argument
484 DoInstall(const base::FilePath& install_path) argument
[all...]
/external/chromium_org/chrome/browser/extensions/updater/
H A Dextension_updater_unittest.cc524 const base::FilePath& install_path() const { return install_path_; } function in class:extensions::ServiceForDownloadTests
1191 base::FilePath tmpfile_path = service->install_path();
1382 base::FilePath tmpfile_path = service->install_path();
1480 base::FilePath tmpfile_path = service.install_path();
1514 EXPECT_FALSE(service.install_path().empty());
1517 EXPECT_EQ(extension_file_path2, service.install_path());

Completed in 1454 milliseconds