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

1 2

  /external/chromium_org/chrome/browser/component_updater/
swiftshader_component_installer.h 15 void RegisterSwiftShaderComponent(ComponentUpdateService* cus);
widevine_cdm_component_installer.h 19 void RegisterWidevineCdmComponent(ComponentUpdateService* cus);
recovery_component_installer.h 18 void RegisterRecoveryComponent(ComponentUpdateService* cus, PrefService* prefs);
component_updater_resource_throttle.h 22 ComponentUpdateService* cus,
flash_component_installer.h 20 void RegisterPepperFlashComponent(ComponentUpdateService* cus);
sw_reporter_installer_win.h 21 void RegisterSwReporterComponent(ComponentUpdateService* cus,
swiftshader_component_installer.cc 164 void FinishSwiftShaderUpdateRegistration(ComponentUpdateService* cus,
173 if (cus->RegisterComponent(swiftshader) != ComponentUpdateService::kOk) {
180 explicit UpdateChecker(ComponentUpdateService* cus);
188 UpdateChecker::UpdateChecker(ComponentUpdateService* cus) : cus_(cus) {
215 void RegisterSwiftShaderPath(ComponentUpdateService* cus) {
232 UpdateChecker* update_checker = new UpdateChecker(cus);
250 void RegisterSwiftShaderComponent(ComponentUpdateService* cus) {
254 base::Bind(&RegisterSwiftShaderPath, cus));
ev_whitelist_component_installer.h 48 void RegisterEVWhitelistComponent(ComponentUpdateService* cus);
recovery_component_installer.cc 72 void RecoveryRegisterHelper(ComponentUpdateService* cus, PrefService* prefs) {
85 if (cus->RegisterComponent(recovery) != ComponentUpdateService::kOk) {
165 void RegisterRecoveryComponent(ComponentUpdateService* cus,
173 base::Bind(&RecoveryRegisterHelper, cus, prefs),
component_updater_resource_throttle.cc 90 ComponentUpdateService* cus,
102 base::Unretained(cus),
ev_whitelist_component_installer.cc 116 void RegisterEVWhitelistComponent(ComponentUpdateService* cus) {
121 // |cus| will take ownership of |installer| during installer->Register(cus).
124 installer->Register(cus);
cld_component_installer.cc 108 void RegisterCldComponent(ComponentUpdateService* cus) {
124 // |cus| will take ownership of |installer| during installer->Register(cus).
127 installer->Register(cus);
cld_component_installer.h 73 void RegisterCldComponent(ComponentUpdateService* cus);
pepper_flash_component_installer.cc 438 void FinishPepperFlashUpdateRegistration(ComponentUpdateService* cus,
446 if (cus->RegisterComponent(pepflash) != ComponentUpdateService::kOk) {
451 void StartPepperFlashUpdateRegistration(ComponentUpdateService* cus) {
478 base::Bind(&FinishPepperFlashUpdateRegistration, cus, version));
503 void RegisterPepperFlashComponent(ComponentUpdateService* cus) {
512 base::Bind(&StartPepperFlashUpdateRegistration, cus));
sw_reporter_installer_win.cc 325 void RegisterSwReporterComponent(ComponentUpdateService* cus,
379 // |cus| will take ownership of |installer| during installer->Register(cus).
382 installer->Register(cus);
  /external/chromium_org/chrome/browser/component_updater/pnacl/
pnacl_component_installer.h 53 void RegisterPnaclComponent(ComponentUpdateService* cus);
72 ComponentUpdateService* cus() const { return cus_; } function in class:component_updater::PnaclComponentInstaller
pnacl_component_installer.cc 305 pci->cus()->RegisterComponent(pnacl_component);
365 ComponentUpdateService* cus) {
366 cus_ = cus;
  /external/chromium_org/chrome/browser/metrics/
chrome_metrics_service_accessor.h 27 void RegisterSwReporterComponent(ComponentUpdateService* cus,
53 component_updater::ComponentUpdateService* cus,
  /external/chromium_org/chrome/browser/ui/webui/
components_ui.cc 142 component_updater::ComponentUpdateService* cus = local
144 cus->AddObserver(this);
148 component_updater::ComponentUpdateService* cus = local
150 if (cus)
151 cus->RemoveObserver(this);
156 component_updater::ComponentUpdateService* cus = local
158 cus->GetOnDemandUpdater().OnDemandUpdate(component_id);
163 component_updater::ComponentUpdateService* cus = local
166 component_ids = cus->GetComponentIDs();
172 if (cus->GetComponentDetails(component_ids[j], &item))
247 ComponentUpdateService* cus = g_browser_process->component_updater(); local
    [all...]
  /external/chromium_org/components/component_updater/
default_component_installer.h 89 void Register(ComponentUpdateService* cus);
105 void StartRegistration(ComponentUpdateService* cus);
106 void FinishRegistration(ComponentUpdateService* cus);
default_component_installer.cc 43 void DefaultComponentInstaller::Register(ComponentUpdateService* cus) {
45 task_runner_ = cus->GetSequencedTaskRunner();
56 cus));
123 void DefaultComponentInstaller::StartRegistration(ComponentUpdateService* cus) {
197 cus));
206 ComponentUpdateService* cus) {
215 ComponentUpdateService::Status status = cus->RegisterComponent(crx);
  /external/chromium_org/chrome/browser/component_updater/test/
component_updater_service_unittest.h 89 ComponentUpdateService* cus,
  /external/chromium_org/chrome/browser/net/
crl_set_fetcher.h 29 void StartInitialLoad(component_updater::ComponentUpdateService* cus,
crl_set_fetcher.cc 36 void CRLSetFetcher::StartInitialLoad(ComponentUpdateService* cus,
42 cus_ = cus;
  /external/chromium_org/chrome/browser/
chrome_browser_main.cc 394 component_updater::ComponentUpdateService* cus = local
397 // Registration can be before or after cus->Start() so it is ok to post
401 RegisterRecoveryComponent(cus, g_browser_process->local_state());
402 RegisterPepperFlashComponent(cus);
403 RegisterSwiftShaderComponent(cus);
404 RegisterWidevineCdmComponent(cus);
406 g_browser_process->pnacl_component_installer()->RegisterPnaclComponent(cus);
411 RegisterCldComponent(cus);
424 g_browser_process->crl_set_fetcher()->StartInitialLoad(cus, path);
431 RegisterEVWhitelistComponent(cus);
    [all...]

Completed in 385 milliseconds

1 2