--- chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc
+++ chrome/browser/ui/gtk/omnibox/omnibox_view_gtk.cc.plague
@@ -1243,6 +1243,12 @@
 
 gboolean OmniboxViewGtk::HandleViewButtonPress(GtkWidget* sender,
                                                GdkEventButton* event) {
+  // Plague's special double-click hack
+  if (event->button == 1 && event->type == GDK_2BUTTON_PRESS) {
+    SelectAllInternal(false, true);
+    return TRUE;
+  }
+
   // We don't need to care about double and triple clicks.
   if (event->type != GDK_BUTTON_PRESS)
     return FALSE;
