commit | 6d76442a2acad95257d7beb62be7691f73f014c0 | [log] [tgz] |
---|---|---|
author | Joshua Pawlicki <[email protected]> | Wed Feb 21 15:23:10 2018 |
committer | Commit Bot <[email protected]> | Wed Feb 21 15:23:10 2018 |
tree | 0b88829378140e623ae1526167b594d3fc7ff043 | |
parent | ce0040824db49f3b71df5d4196d12cfcd7f95588 [diff] [blame] |
Servicify unzipping and use it in the component updater. Bug: 792066 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I910f5dde8cb7c071c4aeb6e3a0db04b301db1063 Reviewed-on: https://chromium-review.googlesource.com/809264 Reviewed-by: Colin Blundell <[email protected]> Reviewed-by: Tom Sepez <[email protected]> Reviewed-by: Ilya Sherman <[email protected]> Reviewed-by: Nico Weber <[email protected]> Reviewed-by: Rohit Rao <[email protected]> Reviewed-by: Jay Civelli <[email protected]> Reviewed-by: Cait Phillips <[email protected]> Reviewed-by: Sorin Jianu <[email protected]> Reviewed-by: Ken Rockot <[email protected]> Commit-Queue: Joshua Pawlicki <[email protected]> Cr-Commit-Position: refs/heads/master@{#538109}
diff --git a/components/component_updater/component_installer_unittest.cc b/components/component_updater/component_installer_unittest.cc index 476ed96a..a1f6717 100644 --- a/components/component_updater/component_installer_unittest.cc +++ b/components/component_updater/component_installer_unittest.cc
@@ -217,9 +217,10 @@ } void ComponentInstallerTest::Unpack(const base::FilePath& crx_path) { + auto config = base::MakeRefCounted<TestConfigurator>(); auto component_unpacker = base::MakeRefCounted<ComponentUnpacker>( std::vector<uint8_t>(std::begin(kSha256Hash), std::end(kSha256Hash)), - crx_path, nullptr, nullptr); + crx_path, nullptr, config->CreateServiceManagerConnector()); component_unpacker->Unpack(base::BindOnce( &ComponentInstallerTest::UnpackComplete, base::Unretained(this))); RunThreads();