# Disables omission of URL elements in Omnibox and status bubble Index: chromium-128.0.6613.137/chrome/browser/ui/status_bubble.h =================================================================== --- chromium-128.0.6613.137.orig/chrome/browser/ui/status_bubble.h +++ chromium-128.0.6613.137/chrome/browser/ui/status_bubble.h @@ -18,7 +18,7 @@ class GURL; class StatusBubble { public: // On hover, expand status bubble to fit long URL after this delay. - static const int kExpandHoverDelayMS = 1600; + static const int kExpandHoverDelayMS = 0; virtual ~StatusBubble() {} Index: chromium-128.0.6613.137/chrome/browser/ui/toolbar/chrome_location_bar_model_delegate.cc =================================================================== --- chromium-128.0.6613.137.orig/chrome/browser/ui/toolbar/chrome_location_bar_model_delegate.cc +++ chromium-128.0.6613.137/chrome/browser/ui/toolbar/chrome_location_bar_model_delegate.cc @@ -261,5 +261,5 @@ TemplateURLService* ChromeLocationBarMod // static void ChromeLocationBarModelDelegate::RegisterProfilePrefs( user_prefs::PrefRegistrySyncable* registry) { - registry->RegisterBooleanPref(omnibox::kPreventUrlElisionsInOmnibox, false); + registry->RegisterBooleanPref(omnibox::kPreventUrlElisionsInOmnibox, true); }