Commit a85c48c2 authored by anand.ratn's avatar anand.ratn Committed by Commit bot

Use base::StringPairs where appropriate from src/ui

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/593033002

Cr-Commit-Position: refs/heads/master@{#296206}
parent c883176f
......@@ -10,6 +10,7 @@
#include <vector>
#include "base/strings/string16.h"
#include "base/strings/string_split.h"
#include "ui/accessibility/ax_enums.h"
#include "ui/accessibility/ax_export.h"
#include "ui/gfx/rect.h"
......@@ -52,7 +53,7 @@ struct AX_EXPORT AXNodeData {
std::vector<std::pair<AXBoolAttribute, bool> > bool_attributes;
std::vector<std::pair<AXIntListAttribute, std::vector<int32> > >
intlist_attributes;
std::vector<std::pair<std::string, std::string> > html_attributes;
base::StringPairs html_attributes;
std::vector<int32> child_ids;
};
......
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