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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/remoting/host/installer/mac/Scripts/
keystone_install.sh 9 /usr/sbin/installer -pkg "$1/@@HOST_PKG@@.pkg" -target /
  /external/chromium_org/chrome/browser/plugins/
plugin_installer_observer.cc 9 PluginInstallerObserver::PluginInstallerObserver(PluginInstaller* installer)
10 : installer_(installer) {
11 installer->AddObserver(this);
31 PluginInstaller* installer) : PluginInstallerObserver(installer) {
32 installer->AddWeakObserver(this);
36 installer()->RemoveWeakObserver(this);
plugin_installer_unittest.cc 13 PluginInstaller::SecurityStatus GetSecurityStatus(PluginInstaller* installer,
20 return installer->GetSecurityStatus(plugin);
33 PluginInstaller installer("claybrick-writer",
38 EXPECT_EQ(kRequiresAuthorization, GetSecurityStatus(&installer, "1.2.3"));
40 EXPECT_EQ(kUpToDate, GetSecurityStatus(&installer, "1.2.3"));
43 installer.AddVersion(Version("9.4.1"), kRequiresAuthorization);
44 installer.AddVersion(Version("10"), kOutOfDate);
45 installer.AddVersion(Version("10.2.1"), kUpToDate);
48 EXPECT_EQ(kOutOfDate, GetSecurityStatus(&installer, "foo"));
50 EXPECT_EQ(kOutOfDate, GetSecurityStatus(&installer, "0"))
    [all...]
plugin_installer_observer.h 14 explicit PluginInstallerObserver(PluginInstaller* installer);
18 PluginInstaller* installer() const { return installer_; } function in class:PluginInstallerObserver
32 // A WeakPluginInstallerObserver is like a weak pointer to the installer, in the
37 explicit WeakPluginInstallerObserver(PluginInstaller* installer);
  /external/chromium_org/chrome/test/mini_installer_test/
switch_builder.cc 7 #include "chrome/installer/util/install_util.h"
21 switches_.AppendSwitch(installer::switches::kChrome);
26 switches_.AppendSwitch(installer::switches::kChromeFrame);
27 switches_.AppendSwitch(installer::switches::kDoNotLaunchChrome);
28 switches_.AppendSwitch(installer::switches::kDoNotRegisterForUpdateLaunch);
33 switches_.AppendSwitch(installer::switches::kMultiInstall);
38 switches_.AppendSwitch(installer::switches::kSystemLevel);
installer_test_util.h 12 #include "chrome/installer/util/installation_validator.h"
19 installer::InstallationValidator::InstallationType type;
30 installer::InstallationValidator::InstallationType type);
36 installer::InstallationValidator::InstallationType type);
51 installer::InstallationValidator::InstallationType product);
57 bool Install(const base::FilePath& installer);
58 bool Install(const base::FilePath& installer, const SwitchBuilder& switches);
68 installer::InstallationValidator::InstallationType type);
77 installer::InstallationValidator::InstallationType expected,
  /external/chromium_org/chrome/installer/util/
eula_util.h 10 namespace installer { namespace
23 } // namespace installer
logging_installer.h 14 namespace installer { namespace
18 // Verbose installer runs clock in at around 50K, non-verbose much less than
19 // that. Some installer operations span multiple setup.exe runs, so we try
46 // Call to initialize logging for Chrome installer.
47 void InitInstallerLogging(const installer::MasterPreferences& prefs);
49 // Call when done using logging for Chrome installer.
53 base::FilePath GetLogFilePath(const installer::MasterPreferences& prefs);
55 } // namespace installer
duplicate_tree_detector.h 16 namespace installer { namespace
27 } // namespace installer
installer_util_test_common.h 12 namespace installer { namespace
22 } // namespace installer
master_preferences_unittest.cc 14 #include "chrome/installer/util/master_preferences.h"
15 #include "chrome/installer/util/master_preferences_constants.h"
16 #include "chrome/installer/util/util_constants.h"
46 installer::MasterPreferences prefs(prefs_file());
80 installer::MasterPreferences prefs(prefs_file());
84 installer::master_preferences::kDistroImportSearchPref,
85 installer::master_preferences::kDistroImportHistoryPref,
86 installer::master_preferences::kDistroImportBookmarksPref,
87 installer::master_preferences::kDistroImportHomePagePref,
88 installer::master_preferences::kDoNotCreateAnyShortcuts
    [all...]
master_preferences.cc 5 #include "chrome/installer/util/master_preferences.h"
16 #include "chrome/installer/util/master_preferences_constants.h"
17 #include "chrome/installer/util/util_constants.h"
23 base::LazyInstance<installer::MasterPreferences> g_master_preferences =
72 namespace installer { namespace
123 if (cmd_line.HasSwitch(installer::switches::kInstallerData)) {
125 installer::switches::kInstallerData));
140 { installer::switches::kAutoLaunchChrome,
141 installer::master_preferences::kAutoLaunchChrome },
142 { installer::switches::kChromeAppHostDeprecated
    [all...]
google_chrome_binaries_distribution.h 10 #include "chrome/installer/util/chromium_binaries_distribution.h"
27 installer::ArchiveType archive_type,
28 installer::InstallStatus install_status);
google_update_experiment_util.h 28 namespace installer { namespace
34 } // namespace installer
uninstall_metrics.h 15 namespace installer { namespace
29 } // namespace installer
  /external/chromium_org/chrome/browser/chromeos/extensions/
install_limiter.cc 25 // Get file size. In case of error, sets 0 as file size to let the installer
39 const scoped_refptr<CrxInstaller>& installer,
41 : installer(installer),
65 void InstallLimiter::Add(const scoped_refptr<CrxInstaller>& installer,
69 installer->InstallCrx(path);
77 base::Bind(&InstallLimiter::AddWithSize, AsWeakPtr(), installer, path));
81 const scoped_refptr<CrxInstaller>& installer,
87 RunInstall(installer, path);
94 deferred_installs_.push(DeferredInstall(installer, path))
136 const scoped_refptr<CrxInstaller> installer = local
    [all...]
  /external/chromium_org/chrome/browser/first_run/
first_run_internal.h 15 namespace installer { namespace
37 const installer::MasterPreferences& master_prefs);
39 // Sets up master preferences by preferences passed by installer.
41 const installer::MasterPreferences& install_prefs,
63 bool ShowPostInstallEULAIfNeeded(installer::MasterPreferences* install_prefs);
first_run_internal_linux.cc 10 #include "chrome/installer/util/master_preferences.h"
25 return master_prefs.AppendASCII(installer::kDefaultMasterPrefs);
  /external/chromium_org/chrome/browser/component_updater/pnacl/
pnacl_profile_observer.cc 13 PnaclComponentInstaller* installer) : pnacl_installer_(installer) {
  /external/chromium_org/chrome_frame/cfinstall/src/stub/
inlinedelegate.js 10 goog.provide('google.cf.installer.InlineDelegate');
14 goog.require('google.cf.installer.InteractionDelegate');
15 goog.require('google.cf.installer.frame');
21 * @implements {google.cf.installer.InteractionDelegate}
23 google.cf.installer.InlineDelegate = function(args) {
34 google.cf.installer.InlineDelegate.styleInjected_ = false;
40 google.cf.installer.InlineDelegate.injectCss_ = function() {
41 if (google.cf.installer.InlineDelegate.styleInjected_)
53 google.cf.installer.InlineDelegate.styleInjected_ = true;
59 google.cf.installer.InlineDelegate.prototype.getIFrameContainer = function()
    [all...]
  /external/chromium_org/chrome/browser/download/
download_crx_util.cc 81 scoped_refptr<extensions::CrxInstaller> installer(
87 installer->set_error_on_unsupported_requirements(true);
88 installer->set_delete_source(true);
89 installer->set_install_cause(extension_misc::INSTALL_CAUSE_USER_DOWNLOAD);
92 installer->set_off_store_install_allow_reason(
98 installer->InstallUserScript(download_item.GetFullPath(),
103 installer->set_original_mime_type(download_item.GetOriginalMimeType());
104 installer->set_apps_require_extension_mime_type(true);
105 installer->set_download_url(download_item.GetURL());
106 installer->set_is_gallery_install(is_gallery_download)
    [all...]
download_crx_util_android.cc 25 scoped_refptr<extensions::CrxInstaller> installer(
27 return installer;
  /external/chromium_org/chrome/installer/setup/
setup_main.cc 5 #include "chrome/installer/setup/setup_main.h"
38 #include "chrome/installer/setup/archive_patch_helper.h"
39 #include "chrome/installer/setup/install.h"
40 #include "chrome/installer/setup/install_worker.h"
41 #include "chrome/installer/setup/setup_constants.h"
42 #include "chrome/installer/setup/setup_util.h"
43 #include "chrome/installer/setup/uninstall.h"
44 #include "chrome/installer/util/browser_distribution.h"
45 #include "chrome/installer/util/channel_info.h"
46 #include "chrome/installer/util/delete_after_reboot_helper.h
1378 namespace installer { namespace
    [all...]
setup_constants.h 5 // Defines all the command-line switches used by Chrome installer.
10 namespace installer { namespace
25 } // namespace installer
  /external/chromium_org/chrome_frame/cfinstall/src/common/
cf-interactiondelegate-externs.js 10 google.cf.installer.InteractionDelegate.prototype.getIFrameContainer;
11 google.cf.installer.InteractionDelegate.prototype.reset;
12 google.cf.installer.InteractionDelegate.prototype.show;
13 google.cf.installer.InteractionDelegate.prototype.customizeIFrame;

Completed in 255 milliseconds

1 2 3 4 5 6 7 8 91011