From db60fc29b755f1cc3e7846497cb54222e3f391de Mon Sep 17 00:00:00 2001 From: "kulkarni.a" Date: Tue, 30 Sep 2014 01:54:01 -0700 Subject: Reusing the base::StringPairs in src/components/* Reusing the "base::StringPairs" insted of "std::vector >" same is defined in base/strings/string_split.h. BUG=412250 Review URL: https://codereview.chromium.org/593113002 Cr-Commit-Position: refs/heads/master@{#297387} --- components/search/search.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'components/search') diff --git a/components/search/search.h b/components/search/search.h index 6cc7927..9558ee8 100644 --- a/components/search/search.h +++ b/components/search/search.h @@ -11,6 +11,7 @@ #include "base/basictypes.h" #include "base/strings/string16.h" +#include "base/strings/string_split.h" namespace chrome { @@ -23,7 +24,7 @@ bool IsInstantExtendedAPIEnabled(); uint64 EmbeddedSearchPageVersion(); // Type for a collection of experiment configuration parameters. -typedef std::vector > FieldTrialFlags; +typedef base::StringPairs FieldTrialFlags; // Finds the active field trial group name and parses out the configuration // flags. On success, |flags| will be filled with the field trial flags. |flags| -- cgit v1.1