Index: components/search/search.cc |
diff --git a/components/search/search.cc b/components/search/search.cc |
index c2d4b4e126e65f140f71997ddbc66967ab208d34..9afd666056d1c6593499d4524d9f78257ddf051b 100644 |
--- a/components/search/search.cc |
+++ b/components/search/search.cc |
@@ -35,8 +35,6 @@ const uint64 kEmbeddedSearchEnabledVersion = 2; |
const uint64 kEmbeddedPageVersionDefault = 2; |
#endif |
-const char kHideVerbatimFlagName[] = "hide_verbatim"; |
- |
// Constants for the field trial name and group prefix. |
// Note in M30 and below this field trial was named "InstantExtended" and in |
// M31 was renamed to EmbeddedSearch for clarity and cleanliness. Since we |
@@ -145,10 +143,4 @@ bool GetBoolValueForFlagWithDefault(const std::string& flag, |
return !!GetUInt64ValueForFlagWithDefault(flag, default_value ? 1 : 0, flags); |
} |
-bool ShouldHideTopVerbatimMatch() { |
- FieldTrialFlags flags; |
- return GetFieldTrialInfo(&flags) && GetBoolValueForFlagWithDefault( |
- kHideVerbatimFlagName, false, flags); |
-} |
- |
} // namespace chrome |