OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ComponentUpdateService
(Results
1 - 25
of
28
) sorted by null
1
2
/external/chromium_org/chrome/browser/component_updater/
swiftshader_component_installer.h
8
class
ComponentUpdateService
;
13
void RegisterSwiftShaderComponent(
ComponentUpdateService
* cus);
widevine_cdm_component_installer.h
8
class
ComponentUpdateService
;
17
void RegisterWidevineCdmComponent(
ComponentUpdateService
* cus);
recovery_component_installer.h
8
class
ComponentUpdateService
;
15
void RegisterRecoveryComponent(
ComponentUpdateService
* cus,
flash_component_installer.h
8
class
ComponentUpdateService
;
18
void RegisterPepperFlashComponent(
ComponentUpdateService
* cus);
component_updater_configurator.h
18
ComponentUpdateService
::Configurator* MakeChromeComponentUpdaterConfigurator(
component_updater_service.h
36
// given to
ComponentUpdateService
::RegisterComponent().
144
class
ComponentUpdateService
{
214
virtual ~
ComponentUpdateService
() {}
231
ComponentUpdateService
* ComponentUpdateServiceFactory(
232
ComponentUpdateService
::Configurator* config);
default_component_installer.h
79
void Register(
ComponentUpdateService
* cus);
95
void StartRegistration(
ComponentUpdateService
* cus);
96
void FinishRegistration(
ComponentUpdateService
* cus);
swiftshader_component_installer.cc
160
void FinishSwiftShaderUpdateRegistration(
ComponentUpdateService
* cus,
169
if (cus->RegisterComponent(swiftshader) !=
ComponentUpdateService
::kOk) {
176
explicit UpdateChecker(
ComponentUpdateService
* cus);
181
ComponentUpdateService
* cus_;
184
UpdateChecker::UpdateChecker(
ComponentUpdateService
* cus)
208
void RegisterSwiftShaderPath(
ComponentUpdateService
* cus) {
237
void RegisterSwiftShaderComponent(
ComponentUpdateService
* cus) {
default_component_installer.cc
34
void DefaultComponentInstaller::Register(
ComponentUpdateService
* cus) {
112
ComponentUpdateService
* cus) {
184
ComponentUpdateService
* cus) {
193
ComponentUpdateService
::Status status = cus->RegisterComponent(crx);
194
if (status !=
ComponentUpdateService
::kOk &&
195
status !=
ComponentUpdateService
::kReplaced) {
recovery_component_installer.cc
67
void RecoveryRegisterHelper(
ComponentUpdateService
* cus,
81
if (cus->RegisterComponent(recovery) !=
ComponentUpdateService
::kOk) {
141
void RegisterRecoveryComponent(
ComponentUpdateService
* cus,
component_updater_configurator.cc
91
class ChromeConfigurator : public
ComponentUpdateService
::Configurator {
219
ComponentUpdateService
::Configurator* MakeChromeComponentUpdaterConfigurator(
pepper_flash_component_installer.cc
349
void FinishPepperFlashUpdateRegistration(
ComponentUpdateService
* cus,
357
if (cus->RegisterComponent(pepflash) !=
ComponentUpdateService
::kOk) {
362
void StartPepperFlashUpdateRegistration(
ComponentUpdateService
* cus) {
399
void RegisterPepperFlashComponent(
ComponentUpdateService
* cus) {
component_updater_service.cc
110
const
ComponentUpdateService
::Configurator& config) {
208
// The one and only implementation of the
ComponentUpdateService
interface. In
220
class CrxUpdateService : public
ComponentUpdateService
{
222
explicit CrxUpdateService(
ComponentUpdateService
::Configurator* config);
225
// Overrides for
ComponentUpdateService
.
315
scoped_ptr<
ComponentUpdateService
::Configurator> config_;
342
CrxUpdateService::CrxUpdateService(
ComponentUpdateService
::Configurator* config)
364
ComponentUpdateService
::Status CrxUpdateService::Start() {
381
ComponentUpdateService
::Status CrxUpdateService::Stop() {
531
ComponentUpdateService
::Status CrxUpdateService::RegisterComponent
[
all
...]
widevine_cdm_component_installer.cc
370
void RegisterWidevineCdmComponent(
ComponentUpdateService
* cus) {
/external/chromium_org/chrome/browser/net/
crl_set_fetcher.h
23
class
ComponentUpdateService
;
30
void StartInitialLoad(
ComponentUpdateService
* cus);
65
ComponentUpdateService
* cus_;
crl_set_fetcher.cc
36
void CRLSetFetcher::StartInitialLoad(
ComponentUpdateService
* cus) {
137
ComponentUpdateService
::kOk) {
/external/chromium_org/chrome/browser/component_updater/test/
component_updater_service_unittest.h
65
class TestConfigurator : public
ComponentUpdateService
::Configurator {
70
// Overrrides for
ComponentUpdateService
::Configurator.
91
void SetComponentUpdateService(
ComponentUpdateService
* cus);
101
ComponentUpdateService
* cus_;
122
ComponentUpdateService
* component_updater();
129
ComponentUpdateService
::Status RegisterComponent(CrxComponent* com,
146
scoped_ptr<
ComponentUpdateService
> component_updater_;
161
static
ComponentUpdateService
::Status OnDemand(
162
ComponentUpdateService
* cus, const std::string& component_id);
component_updater_service_unittest.cc
129
void TestConfigurator::SetComponentUpdateService(
ComponentUpdateService
* cus) {
197
ComponentUpdateService
* ComponentUpdaterTest::component_updater() {
210
ComponentUpdateService
::Status ComponentUpdaterTest::RegisterComponent(
246
ComponentUpdateService
::Status OnDemandTester::OnDemand(
247
ComponentUpdateService
* cus, const std::string& component_id) {
289
EXPECT_EQ(
ComponentUpdateService
::kOk,
632
EXPECT_EQ(
ComponentUpdateService
::kOk,
669
EXPECT_EQ(
ComponentUpdateService
::kError,
712
EXPECT_EQ(
ComponentUpdateService
::kOk,
757
EXPECT_EQ(
ComponentUpdateService
::kOk
[
all
...]
/external/chromium_org/chrome/browser/component_updater/pnacl/
pnacl_component_installer.h
52
void RegisterPnaclComponent(
ComponentUpdateService
* cus,
85
ComponentUpdateService
* cus() const { return cus_; }
94
ComponentUpdateService
* cus_;
pnacl_component_installer.cc
330
ComponentUpdateService
::Status status =
332
if (status !=
ComponentUpdateService
::kOk
333
&& status !=
ComponentUpdateService
::kReplaced) {
430
ComponentUpdateService
* cus,
/external/chromium_org/chrome/browser/
browser_process.h
25
class
ComponentUpdateService
;
208
virtual
ComponentUpdateService
* component_updater() = 0;
browser_process_impl.h
126
virtual
ComponentUpdateService
* component_updater() OVERRIDE;
288
scoped_ptr<
ComponentUpdateService
> component_updater_;
/external/chromium_org/chrome/browser/ui/webui/
components_ui.cc
122
ComponentUpdateService
* cus = g_browser_process->component_updater();
162
ComponentUpdateService
* cus = g_browser_process->component_updater();
/external/chromium_org/chrome/test/base/
testing_browser_process.h
111
virtual
ComponentUpdateService
* component_updater() OVERRIDE;
testing_browser_process.cc
336
ComponentUpdateService
* TestingBrowserProcess::component_updater() {
Completed in 368 milliseconds
1
2