Rename GlicConfiguration to GlicLauncherConfiguration

The launcher prefs (enabled and keyboard shortcut) are installation- global whereas the rest are per-profile so it doesn't make sense to
bundle them in the same place.

This CL is a first step to split the per-profile prefs into a profile-
scoped object.

This is a non-functional change.

Bug: 379168195
Change-Id: I08e5a63f0a4bd61371412850f632fa9101735d57
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6114450
Reviewed-by: Anthony Cui <[email protected]>
Owners-Override: David Bokan <[email protected]>
Commit-Queue: David Bokan <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1400946}
diff --git a/chrome/browser/prefs/browser_prefs.cc b/chrome/browser/prefs/browser_prefs.cc
index e82a0252..97819ed 100644
--- a/chrome/browser/prefs/browser_prefs.cc
+++ b/chrome/browser/prefs/browser_prefs.cc
@@ -547,7 +547,7 @@
 #endif
 
 #if BUILDFLAG(ENABLE_GLIC)
-#include "chrome/browser/glic/launcher/glic_configuration.h"
+#include "chrome/browser/glic/launcher/glic_launcher_configuration.h"
 #endif
 
 namespace {
@@ -2001,7 +2001,7 @@
   registry->RegisterIntegerPref(prefs::kChromeDataRegionSetting, 0);
 
 #if BUILDFLAG(ENABLE_GLIC)
-  glic::GlicConfiguration::RegisterLocalStatePrefs(registry);
+  glic::GlicLauncherConfiguration::RegisterLocalStatePrefs(registry);
 #endif
 
   registry->RegisterIntegerPref(prefs::kToastAlertLevel, 0);
@@ -2038,7 +2038,7 @@
   DownloadPrefs::RegisterProfilePrefs(registry);
   fingerprinting_protection_filter::prefs::RegisterProfilePrefs(registry);
 #if BUILDFLAG(ENABLE_GLIC)
-  glic::GlicConfiguration::RegisterProfilePrefs(registry);
+  glic::GlicLauncherConfiguration::RegisterProfilePrefs(registry);
 #endif
   permissions::PermissionHatsTriggerHelper::RegisterProfilePrefs(registry);
   history_clusters::prefs::RegisterProfilePrefs(registry);