Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1350)

Unified Diff: chrome/browser/pdf/pdf_extension_test.cc

Issue 2829163004: Remove uses of base::hash_map from //chrome (Closed)
Patch Set: Downloads back Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/pdf/pdf_extension_test.cc
diff --git a/chrome/browser/pdf/pdf_extension_test.cc b/chrome/browser/pdf/pdf_extension_test.cc
index 28410322d78348dafa911f9d2bbf2d3424daad1f..2a3cda54b5bbd9e53f1c3f515cce316a0b64eae3 100644
--- a/chrome/browser/pdf/pdf_extension_test.cc
+++ b/chrome/browser/pdf/pdf_extension_test.cc
@@ -4,6 +4,7 @@
#include <stddef.h>
+#include <map>
#include <vector>
#include "base/base_paths.h"
@@ -607,7 +608,7 @@ static std::string DumpPdfAccessibilityTree(const ui::AXTreeUpdate& ax_tree) {
// Create a string representation of the tree starting with the embedded
// object.
std::string ax_tree_dump;
- base::hash_map<int32_t, int> id_to_indentation;
+ std::map<int32_t, int> id_to_indentation;
bool found_embedded_object = false;
for (auto& node : ax_tree.nodes) {
if (node.role == ui::AX_ROLE_EMBEDDED_OBJECT)
« no previous file with comments | « chrome/browser/net/predictor_browsertest.cc ('k') | chrome/browser/resource_coordinator/tab_manager_delegate_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698