[OriginChip] Make trailing location bar the first "enabled" option.

This preserves the original behavior for users who had previously enabled the origin chip at chrome://flags.

BUG=333294

Review URL: https://codereview.chromium.org/131673003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244645 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index ecfa9ff..95a2608 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -356,10 +356,10 @@
 const Experiment::Choice kOriginChipChoices[] = {
   { IDS_GENERIC_EXPERIMENT_CHOICE_DEFAULT, "", "" },
   { IDS_GENERIC_EXPERIMENT_CHOICE_DISABLED, switches::kDisableOriginChip, ""},
-  { IDS_FLAGS_ORIGIN_CHIP_LEADING_LOCATION_BAR,
-    switches::kEnableOriginChipLeadingLocationBar, ""},
   { IDS_FLAGS_ORIGIN_CHIP_TRAILING_LOCATION_BAR,
     switches::kEnableOriginChipTrailingLocationBar, ""},
+  { IDS_FLAGS_ORIGIN_CHIP_LEADING_LOCATION_BAR,
+    switches::kEnableOriginChipLeadingLocationBar, ""},
   { IDS_FLAGS_ORIGIN_CHIP_LEADING_MENU_BUTTON,
     switches::kEnableOriginChipLeadingMenuButton, ""}
 };