diff options
author | bauerb <bauerb@chromium.org> | 2015-02-04 17:09:10 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-05 01:09:55 +0000 |
commit | 810e60f487982e8edc208b78b0b4b2b2a12a77a0 (patch) | |
tree | f76a8cb2498a8e32804fd0a9eb04703ed7a84127 /chrome/browser | |
parent | abfbde8049ea4726e3c750a15aad66c5ab9f5093 (diff) | |
download | chromium_src-810e60f487982e8edc208b78b0b4b2b2a12a77a0.zip chromium_src-810e60f487982e8edc208b78b0b4b2b2a12a77a0.tar.gz chromium_src-810e60f487982e8edc208b78b0b4b2b2a12a77a0.tar.bz2 |
Make ComponentInstaller refcounted.
Before this CL, component installers were leaked in almost all cases. If we allow uninstalling components (see https://codereview.chromium.org/879993005/), we need to fix those leaks.
BUG=436459
Review URL: https://codereview.chromium.org/897873002
Cr-Commit-Position: refs/heads/master@{#314701}
Diffstat (limited to 'chrome/browser')
12 files changed, 126 insertions, 113 deletions
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc index c64b40e..6a719e8 100644 --- a/chrome/browser/browser_process_impl.cc +++ b/chrome/browser/browser_process_impl.cc @@ -878,7 +878,7 @@ BrowserProcessImpl::component_updater() { } CRLSetFetcher* BrowserProcessImpl::crl_set_fetcher() { - if (!crl_set_fetcher_.get()) + if (!crl_set_fetcher_) crl_set_fetcher_ = new CRLSetFetcher(); return crl_set_fetcher_.get(); } @@ -886,13 +886,13 @@ CRLSetFetcher* BrowserProcessImpl::crl_set_fetcher() { component_updater::PnaclComponentInstaller* BrowserProcessImpl::pnacl_component_installer() { #if !defined(DISABLE_NACL) - if (!pnacl_component_installer_.get()) { - pnacl_component_installer_.reset( - new component_updater::PnaclComponentInstaller()); + if (!pnacl_component_installer_) { + pnacl_component_installer_ = + new component_updater::PnaclComponentInstaller(); } return pnacl_component_installer_.get(); #else - return NULL; + return nullptr; #endif } diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h index 3a7848c..95655db 100644 --- a/chrome/browser/browser_process_impl.h +++ b/chrome/browser/browser_process_impl.h @@ -277,7 +277,7 @@ class BrowserProcessImpl : public BrowserProcess, scoped_refptr<CRLSetFetcher> crl_set_fetcher_; #if !defined(DISABLE_NACL) - scoped_ptr<component_updater::PnaclComponentInstaller> + scoped_refptr<component_updater::PnaclComponentInstaller> pnacl_component_installer_; #endif diff --git a/chrome/browser/component_updater/pepper_flash_component_installer.cc b/chrome/browser/component_updater/pepper_flash_component_installer.cc index fc9b092..e811a99 100644 --- a/chrome/browser/component_updater/pepper_flash_component_installer.cc +++ b/chrome/browser/component_updater/pepper_flash_component_installer.cc @@ -335,8 +335,7 @@ class PepperFlashComponentInstaller : public update_client::ComponentInstaller { public: explicit PepperFlashComponentInstaller(const Version& version); - ~PepperFlashComponentInstaller() override {} - + // ComponentInstaller implementation: void OnUpdateError(int error) override; bool Install(const base::DictionaryValue& manifest, @@ -346,6 +345,8 @@ class PepperFlashComponentInstaller : public update_client::ComponentInstaller { base::FilePath* installed_file) override; private: + ~PepperFlashComponentInstaller() override {} + Version current_version_; }; diff --git a/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc b/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc index 6667dc8..785df6a 100644 --- a/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc +++ b/chrome/browser/component_updater/pnacl/pnacl_component_installer.cc @@ -92,7 +92,7 @@ void OverrideDirPnaclComponent(const base::FilePath& base_path) { PathService::Override(chrome::DIR_PNACL_COMPONENT, GetPlatformDir(base_path)); } -bool GetLatestPnaclDirectory(PnaclComponentInstaller* pci, +bool GetLatestPnaclDirectory(const scoped_refptr<PnaclComponentInstaller>& pci, base::FilePath* latest_dir, Version* latest_version, std::vector<base::FilePath>* older_dirs) { @@ -293,9 +293,10 @@ CrxComponent PnaclComponentInstaller::GetCrxComponent() { namespace { -void FinishPnaclUpdateRegistration(const Version& current_version, - const std::string& current_fingerprint, - PnaclComponentInstaller* pci) { +void FinishPnaclUpdateRegistration( + const Version& current_version, + const std::string& current_fingerprint, + const scoped_refptr<PnaclComponentInstaller>& pci) { DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); pci->set_current_version(current_version); CheckVersionCompatiblity(current_version); @@ -312,7 +313,8 @@ void FinishPnaclUpdateRegistration(const Version& current_version, // Check if there is an existing version on disk first to know when // a hosted version is actually newer. -void StartPnaclUpdateRegistration(PnaclComponentInstaller* pci) { +void StartPnaclUpdateRegistration( + const scoped_refptr<PnaclComponentInstaller>& pci) { DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); base::FilePath path = pci->GetPnaclBaseDirectory(); if (!base::PathExists(path)) { @@ -365,9 +367,9 @@ void StartPnaclUpdateRegistration(PnaclComponentInstaller* pci) { void PnaclComponentInstaller::RegisterPnaclComponent( ComponentUpdateService* cus) { cus_ = cus; - BrowserThread::PostTask(BrowserThread::FILE, - FROM_HERE, - base::Bind(&StartPnaclUpdateRegistration, this)); + BrowserThread::PostTask( + BrowserThread::FILE, FROM_HERE, + base::Bind(&StartPnaclUpdateRegistration, make_scoped_refptr(this))); } } // namespace component_updater diff --git a/chrome/browser/component_updater/pnacl/pnacl_component_installer.h b/chrome/browser/component_updater/pnacl/pnacl_component_installer.h index a5683bb..b8e256d 100644 --- a/chrome/browser/component_updater/pnacl/pnacl_component_installer.h +++ b/chrome/browser/component_updater/pnacl/pnacl_component_installer.h @@ -41,8 +41,7 @@ class PnaclComponentInstaller : public update_client::ComponentInstaller { public: PnaclComponentInstaller(); - ~PnaclComponentInstaller() override; - + // ComponentInstaller implementation: void OnUpdateError(int error) override; bool Install(const base::DictionaryValue& manifest, @@ -74,9 +73,12 @@ class PnaclComponentInstaller : public update_client::ComponentInstaller { ComponentUpdateService* cus() const { return cus_; } private: + ~PnaclComponentInstaller() override; + base::Version current_version_; std::string current_fingerprint_; ComponentUpdateService* cus_; + DISALLOW_COPY_AND_ASSIGN(PnaclComponentInstaller); }; diff --git a/chrome/browser/component_updater/recovery_component_installer.cc b/chrome/browser/component_updater/recovery_component_installer.cc index 2173f05..696ab432 100644 --- a/chrome/browser/component_updater/recovery_component_installer.cc +++ b/chrome/browser/component_updater/recovery_component_installer.cc @@ -176,8 +176,8 @@ void ElevatedInstallRecoveryComponent(const base::FilePath& installer_path) { class RecoveryComponentInstaller : public update_client::ComponentInstaller { public: RecoveryComponentInstaller(const Version& version, PrefService* prefs); - ~RecoveryComponentInstaller() override {} + // ComponentInstaller implementation: void OnUpdateError(int error) override; bool Install(const base::DictionaryValue& manifest, @@ -187,6 +187,8 @@ class RecoveryComponentInstaller : public update_client::ComponentInstaller { base::FilePath* installed_file) override; private: + ~RecoveryComponentInstaller() override {} + bool RunInstallCommand(const base::CommandLine& cmdline, const base::FilePath& installer_folder) const; diff --git a/chrome/browser/component_updater/supervised_user_whitelist_installer.cc b/chrome/browser/component_updater/supervised_user_whitelist_installer.cc index 603242f..55b0860 100644 --- a/chrome/browser/component_updater/supervised_user_whitelist_installer.cc +++ b/chrome/browser/component_updater/supervised_user_whitelist_installer.cc @@ -139,10 +139,9 @@ void SupervisedUserWhitelistInstallerImpl::RegisterWhitelist( scoped_ptr<ComponentInstallerTraits> traits( new SupervisedUserWhitelistComponentInstallerTraits(crx_id, name, callback)); - DefaultComponentInstaller* installer = - new DefaultComponentInstaller(traits.Pass()); + scoped_refptr<DefaultComponentInstaller> installer( + new DefaultComponentInstaller(traits.Pass())); - // Takes ownership of |installer|. installer->Register(cus_); if (newly_added) diff --git a/chrome/browser/component_updater/swiftshader_component_installer.cc b/chrome/browser/component_updater/swiftshader_component_installer.cc index bea146a..917a3ca 100644 --- a/chrome/browser/component_updater/swiftshader_component_installer.cc +++ b/chrome/browser/component_updater/swiftshader_component_installer.cc @@ -100,8 +100,7 @@ class SwiftShaderComponentInstaller : public update_client::ComponentInstaller { public: explicit SwiftShaderComponentInstaller(const Version& version); - ~SwiftShaderComponentInstaller() override {} - + // ComponentInstaller implementation: void OnUpdateError(int error) override; bool Install(const base::DictionaryValue& manifest, @@ -111,6 +110,8 @@ class SwiftShaderComponentInstaller : public update_client::ComponentInstaller { base::FilePath* installed_file) override; private: + ~SwiftShaderComponentInstaller() override {} + Version current_version_; }; diff --git a/chrome/browser/component_updater/test/component_updater_service_unittest.cc b/chrome/browser/component_updater/test/component_updater_service_unittest.cc index 7957c74..9e65310 100644 --- a/chrome/browser/component_updater/test/component_updater_service_unittest.cc +++ b/chrome/browser/component_updater/test/component_updater_service_unittest.cc @@ -116,16 +116,23 @@ ComponentUpdateService::Status ComponentUpdaterTest::RegisterComponent( CrxComponent* com, TestComponents component, const Version& version, - TestInstaller* installer) { - if (component == kTestComponent_abag) { - com->name = "test_abag"; - com->pk_hash.assign(abag_hash, abag_hash + arraysize(abag_hash)); - } else if (component == kTestComponent_jebg) { - com->name = "test_jebg"; - com->pk_hash.assign(jebg_hash, jebg_hash + arraysize(jebg_hash)); - } else { - com->name = "test_ihfo"; - com->pk_hash.assign(ihfo_hash, ihfo_hash + arraysize(ihfo_hash)); + const scoped_refptr<TestInstaller>& installer) { + switch (component) { + case kTestComponent_abag: { + com->name = "test_abag"; + com->pk_hash.assign(abag_hash, abag_hash + arraysize(abag_hash)); + break; + } + case kTestComponent_jebg: { + com->name = "test_jebg"; + com->pk_hash.assign(jebg_hash, jebg_hash + arraysize(jebg_hash)); + break; + } + case kTestComponent_ihfo: { + com->name = "test_ihfo"; + com->pk_hash.assign(ihfo_hash, ihfo_hash + arraysize(ihfo_hash)); + break; + } } com->version = version; com->installer = installer; @@ -190,20 +197,20 @@ TEST_F(ComponentUpdaterTest, CheckCrxSleep) { EXPECT_TRUE(post_interceptor_->ExpectRequest( new PartialMatch("updatecheck"), test_file("updatecheck_reply_1.xml"))); - TestInstaller installer; + scoped_refptr<TestInstaller> installer(new TestInstaller); CrxComponent com; component_updater()->AddObserver(&observer); EXPECT_EQ( ComponentUpdateService::kOk, - RegisterComponent(&com, kTestComponent_abag, Version("1.1"), &installer)); + RegisterComponent(&com, kTestComponent_abag, Version("1.1"), installer)); // We loop twice, but there are no updates so we expect two sleep messages. test_configurator()->SetLoopCount(2); component_updater()->Start(); RunThreads(); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->error()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->install_count()); + EXPECT_EQ(0, installer->error()); + EXPECT_EQ(0, installer->install_count()); // Expect to see the two update check requests and no other requests, // including pings. @@ -248,8 +255,8 @@ TEST_F(ComponentUpdaterTest, CheckCrxSleep) { component_updater()->Start(); RunThreads(); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->error()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->install_count()); + EXPECT_EQ(0, installer->error()); + EXPECT_EQ(0, installer->install_count()); EXPECT_EQ(2, post_interceptor_->GetHitCount()) << post_interceptor_->GetRequestsAsString(); @@ -335,21 +342,21 @@ TEST_F(ComponentUpdaterTest, InstallCrx) { component_updater()->AddObserver(&observer); - TestInstaller installer1; + scoped_refptr<TestInstaller> installer1(new TestInstaller); CrxComponent com1; - RegisterComponent(&com1, kTestComponent_jebg, Version("0.9"), &installer1); - TestInstaller installer2; + RegisterComponent(&com1, kTestComponent_jebg, Version("0.9"), installer1); + scoped_refptr<TestInstaller> installer2(new TestInstaller); CrxComponent com2; - RegisterComponent(&com2, kTestComponent_abag, Version("2.2"), &installer2); + RegisterComponent(&com2, kTestComponent_abag, Version("2.2"), installer2); test_configurator()->SetLoopCount(2); component_updater()->Start(); RunThreads(); - EXPECT_EQ(0, static_cast<TestInstaller*>(com1.installer)->error()); - EXPECT_EQ(1, static_cast<TestInstaller*>(com1.installer)->install_count()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com2.installer)->error()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com2.installer)->install_count()); + EXPECT_EQ(0, installer1->error()); + EXPECT_EQ(1, installer1->install_count()); + EXPECT_EQ(0, installer2->error()); + EXPECT_EQ(0, installer2->install_count()); // Expect three request in total: two update checks and one ping. EXPECT_EQ(3, post_interceptor_->GetHitCount()) @@ -440,9 +447,9 @@ TEST_F(ComponentUpdaterTest, ProdVersionCheck) { GURL(expected_crx_url), test_file("jebgalgnebhfojomionfpkfelancnnkf.crx")); - TestInstaller installer; + scoped_refptr<TestInstaller> installer(new TestInstaller); CrxComponent com; - RegisterComponent(&com, kTestComponent_jebg, Version("0.9"), &installer); + RegisterComponent(&com, kTestComponent_jebg, Version("0.9"), installer); test_configurator()->SetLoopCount(1); component_updater()->Start(); @@ -457,8 +464,8 @@ TEST_F(ComponentUpdaterTest, ProdVersionCheck) { // Expect no download to occur. EXPECT_EQ(0, get_interceptor_->GetHitCount()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->error()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->install_count()); + EXPECT_EQ(0, installer->error()); + EXPECT_EQ(0, installer->install_count()); component_updater()->Stop(); } @@ -530,12 +537,12 @@ TEST_F(ComponentUpdaterTest, MAYBE_OnDemandUpdate) { component_updater()->AddObserver(&observer); - TestInstaller installer1; + scoped_refptr<TestInstaller> installer1(new TestInstaller); CrxComponent com1; - RegisterComponent(&com1, kTestComponent_abag, Version("2.2"), &installer1); - TestInstaller installer2; + RegisterComponent(&com1, kTestComponent_abag, Version("2.2"), installer1); + scoped_refptr<TestInstaller> installer2(new TestInstaller); CrxComponent com2; - RegisterComponent(&com2, kTestComponent_jebg, Version("0.9"), &installer2); + RegisterComponent(&com2, kTestComponent_jebg, Version("0.9"), installer2); // No update normally. test_configurator()->SetLoopCount(1); @@ -563,10 +570,10 @@ TEST_F(ComponentUpdaterTest, MAYBE_OnDemandUpdate) { component_updater()->Start(); RunThreads(); - EXPECT_EQ(0, static_cast<TestInstaller*>(com1.installer)->error()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com1.installer)->install_count()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com2.installer)->error()); - EXPECT_EQ(1, static_cast<TestInstaller*>(com2.installer)->install_count()); + EXPECT_EQ(0, installer1->error()); + EXPECT_EQ(0, installer1->install_count()); + EXPECT_EQ(0, installer2->error()); + EXPECT_EQ(1, installer2->install_count()); EXPECT_EQ(2, post_interceptor_->GetHitCount()) << post_interceptor_->GetRequestsAsString(); @@ -742,12 +749,12 @@ TEST_F(ComponentUpdaterTest, CheckReRegistration) { component_updater()->AddObserver(&observer); - TestInstaller installer1; + scoped_refptr<TestInstaller> installer1(new TestInstaller); CrxComponent com1; - RegisterComponent(&com1, kTestComponent_jebg, Version("0.9"), &installer1); - TestInstaller installer2; + RegisterComponent(&com1, kTestComponent_jebg, Version("0.9"), installer1); + scoped_refptr<TestInstaller> installer2(new TestInstaller); CrxComponent com2; - RegisterComponent(&com2, kTestComponent_abag, Version("2.2"), &installer2); + RegisterComponent(&com2, kTestComponent_abag, Version("2.2"), installer2); // Loop twice to issue two checks: (1) with original 0.9 version, update to // 1.0, and do the second check (2) with the updated 1.0 version. @@ -755,10 +762,10 @@ TEST_F(ComponentUpdaterTest, CheckReRegistration) { component_updater()->Start(); RunThreads(); - EXPECT_EQ(0, static_cast<TestInstaller*>(com1.installer)->error()); - EXPECT_EQ(1, static_cast<TestInstaller*>(com1.installer)->install_count()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com2.installer)->error()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com2.installer)->install_count()); + EXPECT_EQ(0, installer1->error()); + EXPECT_EQ(1, installer1->install_count()); + EXPECT_EQ(0, installer2->error()); + EXPECT_EQ(0, installer2->install_count()); EXPECT_EQ(3, post_interceptor_->GetHitCount()) << post_interceptor_->GetRequestsAsString(); @@ -810,10 +817,10 @@ TEST_F(ComponentUpdaterTest, CheckReRegistration) { EXPECT_TRUE(post_interceptor_->ExpectRequest( new PartialMatch("updatecheck"), test_file("updatecheck_reply_1.xml"))); - TestInstaller installer3; + scoped_refptr<TestInstaller> installer3(new TestInstaller); EXPECT_EQ(ComponentUpdateService::kReplaced, - RegisterComponent( - &com1, kTestComponent_jebg, Version("2.2"), &installer3)); + RegisterComponent(&com1, kTestComponent_jebg, Version("2.2"), + installer3)); // Loop once just to notice the check happening with the re-register version. test_configurator()->SetLoopCount(1); @@ -821,10 +828,10 @@ TEST_F(ComponentUpdaterTest, CheckReRegistration) { RunThreads(); // We created a new installer, so the counts go back to 0. - EXPECT_EQ(0, static_cast<TestInstaller*>(com1.installer)->error()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com1.installer)->install_count()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com2.installer)->error()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com2.installer)->install_count()); + EXPECT_EQ(0, installer3->error()); + EXPECT_EQ(0, installer3->install_count()); + EXPECT_EQ(0, installer2->error()); + EXPECT_EQ(0, installer2->install_count()); // One update check and no additional pings are expected. EXPECT_EQ(1, post_interceptor_->GetHitCount()) @@ -873,16 +880,16 @@ TEST_F(ComponentUpdaterTest, DifferentialUpdate) { "ihfokbkgjpifnbbojhneepfflplebdkc_1to2.crx"), test_file("ihfokbkgjpifnbbojhneepfflplebdkc_1to2.crx")); - VersionedTestInstaller installer; + scoped_refptr<TestInstaller> installer(new VersionedTestInstaller); CrxComponent com; - RegisterComponent(&com, kTestComponent_ihfo, Version("0.0"), &installer); + RegisterComponent(&com, kTestComponent_ihfo, Version("0.0"), installer); test_configurator()->SetLoopCount(3); component_updater()->Start(); RunThreads(); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->error()); - EXPECT_EQ(2, static_cast<TestInstaller*>(com.installer)->install_count()); + EXPECT_EQ(0, installer->error()); + EXPECT_EQ(2, installer->install_count()); EXPECT_EQ(5, post_interceptor_->GetHitCount()) << post_interceptor_->GetRequestsAsString(); @@ -962,17 +969,17 @@ TEST_F(ComponentUpdaterTest, MAYBE_DifferentialUpdateFails) { GURL("http://localhost/download/ihfokbkgjpifnbbojhneepfflplebdkc_2.crx"), test_file("ihfokbkgjpifnbbojhneepfflplebdkc_2.crx")); - TestInstaller installer; + scoped_refptr<TestInstaller> installer(new TestInstaller); CrxComponent com; - RegisterComponent(&com, kTestComponent_ihfo, Version("1.0"), &installer); + RegisterComponent(&com, kTestComponent_ihfo, Version("1.0"), installer); test_configurator()->SetLoopCount(2); component_updater()->Start(); RunThreads(); // A failed differential update does not count as a failed install. - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->error()); - EXPECT_EQ(1, static_cast<TestInstaller*>(com.installer)->install_count()); + EXPECT_EQ(0, installer->error()); + EXPECT_EQ(1, installer->install_count()); EXPECT_EQ(3, post_interceptor_->GetHitCount()) << post_interceptor_->GetRequestsAsString(); @@ -1013,14 +1020,17 @@ TEST_F(ComponentUpdaterTest, MAYBE_DifferentialUpdateFails) { // Verify that a failed installation causes an install failure ping. TEST_F(ComponentUpdaterTest, MAYBE_CheckFailedInstallPing) { // This test installer reports installation failure. - class : public TestInstaller { + class FailingTestInstaller : public TestInstaller { bool Install(const base::DictionaryValue& manifest, const base::FilePath& unpack_path) override { ++install_count_; base::DeleteFile(unpack_path, true); return false; } - } installer; + private: + ~FailingTestInstaller() override {} + }; + scoped_refptr<FailingTestInstaller> installer(new FailingTestInstaller); EXPECT_TRUE(post_interceptor_->ExpectRequest( new PartialMatch("updatecheck"), test_file("updatecheck_reply_1.xml"))); @@ -1036,7 +1046,7 @@ TEST_F(ComponentUpdaterTest, MAYBE_CheckFailedInstallPing) { // Loop twice to issue two checks: (1) with original 0.9 version // and (2), which should retry with 0.9. CrxComponent com; - RegisterComponent(&com, kTestComponent_jebg, Version("0.9"), &installer); + RegisterComponent(&com, kTestComponent_jebg, Version("0.9"), installer); test_configurator()->SetLoopCount(2); component_updater()->Start(); @@ -1087,8 +1097,8 @@ TEST_F(ComponentUpdaterTest, MAYBE_CheckFailedInstallPing) { component_updater()->Start(); RunThreads(); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->error()); - EXPECT_EQ(2, static_cast<TestInstaller*>(com.installer)->install_count()); + EXPECT_EQ(0, installer->error()); + EXPECT_EQ(2, installer->install_count()); EXPECT_EQ(1, post_interceptor_->GetHitCount()) << post_interceptor_->GetRequestsAsString(); @@ -1136,17 +1146,17 @@ TEST_F(ComponentUpdaterTest, DifferentialUpdateFailErrorcode) { GURL("http://localhost/download/ihfokbkgjpifnbbojhneepfflplebdkc_2.crx"), test_file("ihfokbkgjpifnbbojhneepfflplebdkc_2.crx")); - VersionedTestInstaller installer; + scoped_refptr<TestInstaller> installer(new VersionedTestInstaller); CrxComponent com; - RegisterComponent(&com, kTestComponent_ihfo, Version("0.0"), &installer); + RegisterComponent(&com, kTestComponent_ihfo, Version("0.0"), installer); test_configurator()->SetLoopCount(3); component_updater()->Start(); RunThreads(); component_updater()->Stop(); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->error()); - EXPECT_EQ(2, static_cast<TestInstaller*>(com.installer)->install_count()); + EXPECT_EQ(0, installer->error()); + EXPECT_EQ(2, installer->install_count()); EXPECT_EQ(5, post_interceptor_->GetHitCount()) << post_interceptor_->GetRequestsAsString(); @@ -1249,12 +1259,12 @@ TEST_F(ComponentUpdaterTest, ResourceThrottleDeletedNoUpdate) { EXPECT_TRUE(post_interceptor_->ExpectRequest( new PartialMatch("updatecheck"), test_file("updatecheck_reply_1.xml"))); - TestInstaller installer; + scoped_refptr<TestInstaller> installer(new TestInstaller); CrxComponent com; component_updater()->AddObserver(&observer); EXPECT_EQ( ComponentUpdateService::kOk, - RegisterComponent(&com, kTestComponent_abag, Version("1.1"), &installer)); + RegisterComponent(&com, kTestComponent_abag, Version("1.1"), installer)); // The following two calls ensure that we don't do an update check via the // timer, so the only update check should be the on-demand one. test_configurator()->SetInitialDelay(1000000); @@ -1275,8 +1285,8 @@ TEST_F(ComponentUpdaterTest, ResourceThrottleDeletedNoUpdate) { RunThreads(); EXPECT_EQ(1, post_interceptor_->GetHitCount()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->error()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->install_count()); + EXPECT_EQ(0, installer->error()); + EXPECT_EQ(0, installer->install_count()); component_updater()->Stop(); } @@ -1349,12 +1359,12 @@ TEST_F(ComponentUpdaterTest, ResourceThrottleLiveNoUpdate) { EXPECT_TRUE(post_interceptor_->ExpectRequest( new PartialMatch("updatecheck"), test_file("updatecheck_reply_1.xml"))); - TestInstaller installer; + scoped_refptr<TestInstaller> installer(new TestInstaller); CrxComponent com; component_updater()->AddObserver(&observer); - EXPECT_EQ( - ComponentUpdateService::kOk, - RegisterComponent(&com, kTestComponent_abag, Version("1.1"), &installer)); + EXPECT_EQ(ComponentUpdateService::kOk, + RegisterComponent(&com, kTestComponent_abag, Version("1.1"), + installer)); // The following two calls ensure that we don't do an update check via the // timer, so the only update check should be the on-demand one. test_configurator()->SetInitialDelay(1000000); @@ -1381,8 +1391,8 @@ TEST_F(ComponentUpdaterTest, ResourceThrottleLiveNoUpdate) { RunThreads(); EXPECT_EQ(1, post_interceptor_->GetHitCount()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->error()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->install_count()); + EXPECT_EQ(0, installer->error()); + EXPECT_EQ(0, installer->install_count()); component_updater()->Stop(); } @@ -1407,8 +1417,8 @@ TEST_F(ComponentUpdaterTest, ResourceThrottleLiveNoUpdate) { RunThreads(); EXPECT_EQ(1, post_interceptor_->GetHitCount()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->error()); - EXPECT_EQ(0, static_cast<TestInstaller*>(com.installer)->install_count()); + EXPECT_EQ(0, installer->error()); + EXPECT_EQ(0, installer->install_count()); component_updater()->Stop(); } @@ -1466,11 +1476,11 @@ TEST_F(ComponentUpdaterTest, Observer) { component_updater()->AddObserver(&observer1); component_updater()->AddObserver(&observer2); - TestInstaller installer; + scoped_refptr<TestInstaller> installer(new TestInstaller); CrxComponent com; EXPECT_EQ( ComponentUpdateService::kOk, - RegisterComponent(&com, kTestComponent_abag, Version("1.1"), &installer)); + RegisterComponent(&com, kTestComponent_abag, Version("1.1"), installer)); test_configurator()->SetLoopCount(1); component_updater()->Start(); RunThreads(); diff --git a/chrome/browser/component_updater/test/component_updater_service_unittest.h b/chrome/browser/component_updater/test/component_updater_service_unittest.h index 4955041..bb035ce 100644 --- a/chrome/browser/component_updater/test/component_updater_service_unittest.h +++ b/chrome/browser/component_updater/test/component_updater_service_unittest.h @@ -60,7 +60,7 @@ class ComponentUpdaterTest : public testing::Test { update_client::CrxComponent* com, TestComponents component, const Version& version, - update_client::TestInstaller* installer); + const scoped_refptr<update_client::TestInstaller>& installer); protected: void RunThreads(); diff --git a/chrome/browser/component_updater/test/supervised_user_whitelist_installer_unittest.cc b/chrome/browser/component_updater/test/supervised_user_whitelist_installer_unittest.cc index 1f0ef1f..d633447 100644 --- a/chrome/browser/component_updater/test/supervised_user_whitelist_installer_unittest.cc +++ b/chrome/browser/component_updater/test/supervised_user_whitelist_installer_unittest.cc @@ -58,10 +58,7 @@ class MockComponentUpdateService : public ComponentUpdateService { const scoped_refptr<base::SequencedTaskRunner>& task_runner) : task_runner_(task_runner) {} - ~MockComponentUpdateService() override { - if (component_) - delete component_->installer; - } + ~MockComponentUpdateService() override {} MockOnDemandUpdater& on_demand_updater() { return on_demand_updater_; } diff --git a/chrome/browser/net/crl_set_fetcher.h b/chrome/browser/net/crl_set_fetcher.h index 3568df3..ac4be19 100644 --- a/chrome/browser/net/crl_set_fetcher.h +++ b/chrome/browser/net/crl_set_fetcher.h @@ -25,8 +25,7 @@ namespace component_updater { class ComponentUpdateService; } -class CRLSetFetcher : public update_client::ComponentInstaller, - public base::RefCountedThreadSafe<CRLSetFetcher> { +class CRLSetFetcher : public update_client::ComponentInstaller { public: CRLSetFetcher(); |