Commit f42513a7 authored by mohan.reddy's avatar mohan.reddy Committed by Commit bot

Use of base::StringPairs appropriately in base

Using  base::StringPairs in base folder
Becuase base/strings/string_split.h defines:
typedef std::vector<std::pair<std::string, std::string> > StringPairs;

BUG=412250

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

Cr-Commit-Position: refs/heads/master@{#296647}
parent 79fd7f0a
......@@ -31,7 +31,7 @@ void SplitString(const std::wstring& str,
class SplitStringIntoKeyValuePairsTest : public testing::Test {
protected:
std::vector<std::pair<std::string, std::string> > kv_pairs;
base::StringPairs kv_pairs;
};
TEST_F(SplitStringIntoKeyValuePairsTest, EmptyString) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment