Rename WebApplicationInfo

Changed all instances of "WebApplicationInfo"
to "WebAppInstallInfo"

web_application_info.h/cc will be renamed in a subsequent CL.

Bug: 1091473
Change-Id: I77d8732d570fbcee940990a1c1706964852fccb3
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3343547
Reviewed-by: Eric Willigers <[email protected]>
Reviewed-by: Dominick Ng <[email protected]>
Reviewed-by: Nico Weber <[email protected]>
Commit-Queue: Anosua Roy <[email protected]>
Cr-Commit-Position: refs/heads/main@{#956969}
diff --git a/chrome/browser/web_applications/external_install_options.h b/chrome/browser/web_applications/external_install_options.h
index 45a21d9ba..5ee60b9e 100644
--- a/chrome/browser/web_applications/external_install_options.h
+++ b/chrome/browser/web_applications/external_install_options.h
@@ -19,8 +19,8 @@
 
 namespace web_app {
 
-using WebApplicationInfoFactory =
-    base::RepeatingCallback<std::unique_ptr<WebApplicationInfo>()>;
+using WebAppInstallInfoFactory =
+    base::RepeatingCallback<std::unique_ptr<WebAppInstallInfo>()>;
 
 enum class ExternalInstallSource;
 
@@ -176,9 +176,9 @@
   // |service_worker_registration_url| will not be loaded.
   bool only_use_app_info_factory = false;
 
-  // A factory callback that returns a unique_ptr<WebApplicationInfo> to be used
+  // A factory callback that returns a unique_ptr<WebAppInstallInfo> to be used
   // as the app's installation metadata.
-  WebApplicationInfoFactory app_info_factory;
+  WebAppInstallInfoFactory app_info_factory;
 
   // The type of SystemWebApp, if this app is a System Web App.
   absl::optional<SystemAppType> system_app_type = absl::nullopt;