Commit 2315eba2 authored by payal.pandey's avatar payal.pandey Committed by Commit bot

Use of base::StringPairs appropriately in stats.h

Bescause base/strings/string_split.h defines:
typedef std::vector<std::pair<std::string, std::string> > StringPairs;

BUG=412250

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

Cr-Commit-Position: refs/heads/master@{#327240}
parent 8a0c2c45
......@@ -6,9 +6,9 @@
#define NET_DISK_CACHE_BLOCKFILE_STATS_H_
#include <string>
#include <vector>
#include "base/basictypes.h"
#include "base/strings/string_split.h"
#include "net/base/net_export.h"
#include "net/disk_cache/blockfile/addr.h"
......@@ -18,7 +18,7 @@ class HistogramSamples;
namespace disk_cache {
typedef std::vector<std::pair<std::string, std::string> > StatsItems;
using StatsItems = base::StringPairs;
// This class stores cache-specific usage information, for tunning purposes.
class NET_EXPORT_PRIVATE Stats {
......
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