Index: components/arc/test/fake_app_instance.cc |
diff --git a/components/arc/test/fake_app_instance.cc b/components/arc/test/fake_app_instance.cc |
index 7ae00a6398e824804db1f0c135ae8ddde2904ea2..4471f258cf9cbc87239e222b05cdc986cdc13c26 100644 |
--- a/components/arc/test/fake_app_instance.cc |
+++ b/components/arc/test/fake_app_instance.cc |
@@ -191,6 +191,15 @@ void FakeAppInstance::SendPackageUninstalled(const std::string& package_name) { |
app_host_->OnPackageRemoved(package_name); |
} |
+void FakeAppInstance::SendInstallationStarted(const std::string& package_name) { |
+ app_host_->OnInstallationStarted(package_name); |
+} |
+ |
+void FakeAppInstance::SendInstallationFinished(const std::string& package_name, |
+ bool success) { |
+ app_host_->OnInstallationFinished(package_name, success); |
+} |
+ |
void FakeAppInstance::CanHandleResolution( |
const std::string& package_name, |
const std::string& activity, |