Changed uses of deque to vector in chrome/browser/android/data_usage.
chrome/browser/android/data_usage has a few uses of std::deque that would work just about as well using std::vector, and since std::deque is memory inefficient for small numbers of elements (see http://crbug.com/674287), this CL replaces those uses of std::deque with std::vector. BUG=679568 Review-Url: https://codereview.chromium.org/2624663002 Cr-Commit-Position: refs/heads/master@{#443066}
Showing
Please register or sign in to comment