commit | adf31eb3e54893f0ca322d6fba941c3ebc9853e9 | [log] [tgz] |
---|---|---|
author | Takuto Ikuta <[email protected]> | Sat Jan 05 00:32:48 2019 |
committer | Commit Bot <[email protected]> | Sat Jan 05 00:32:48 2019 |
tree | 4469d0f287bb04351124ab8dec092c1ba77e7bc2 | |
parent | 00267b2e5ccb52a74edb516ddfcf08b59fd1dffc [diff] |
Replace base::hash_map with std::unordered_map base::hash_map is alias of std::unordered_map now. I applied following command to make this CL. $ git grep -l 'base::hash_map' | fgrep -v base/ | xargs sed -i -e 's/base::hash_map/std::unordered_set/g' -e 's/\(#include <[a-z_]*>\)/\1\n#include <unordered_map>/' -e 's/BASE_HASH_NAMESPACE/std/' $ git cl format $ # Added IntPairHash and replaced BASE_HASH_NAMESPACE with std in some places. TBR: [email protected] Bug: 576864 Change-Id: I38941d9f9bcb05ec474b8dee5230c4c5dcd2211f Reviewed-on: https://chromium-review.googlesource.com/c/1390892 Commit-Queue: Takuto Ikuta <[email protected]> Reviewed-by: Daniel Cheng <[email protected]> Cr-Commit-Position: refs/heads/master@{#620124}
Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.
The project's web site is https://www.chromium.org.
Documentation in the source is rooted in docs/README.md.
Learn how to Get Around the Chromium Source Code Directory Structure .