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

Unified Diff: chrome/browser/android/data_usage/data_use_ui_tab_model.h

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/android/data_usage/data_use_ui_tab_model.h
diff --git a/chrome/browser/android/data_usage/data_use_ui_tab_model.h b/chrome/browser/android/data_usage/data_use_ui_tab_model.h
index fe33bd41bf13b690d68bd898aaa058527a01c61f..c57a2d388d4eb1ce8b0a852bfb0ff6d8dfe5acda 100644
--- a/chrome/browser/android/data_usage/data_use_ui_tab_model.h
+++ b/chrome/browser/android/data_usage/data_use_ui_tab_model.h
@@ -5,10 +5,10 @@
#ifndef CHROME_BROWSER_ANDROID_DATA_USAGE_DATA_USE_UI_TAB_MODEL_H_
#define CHROME_BROWSER_ANDROID_DATA_USAGE_DATA_USE_UI_TAB_MODEL_H_
+#include <map>
#include <memory>
#include <string>
-#include "base/containers/hash_tables.h"
#include "base/gtest_prod_util.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
@@ -136,7 +136,7 @@ class DataUseUITabModel : public KeyedService,
const std::string package;
};
- typedef base::hash_map<SessionID::id_type, DataUseTrackingEvent> TabEvents;
+ typedef std::map<SessionID::id_type, DataUseTrackingEvent> TabEvents;
// DataUseTabModel::TabDataUseObserver implementation:
void NotifyTrackingStarting(SessionID::id_type tab_id) override;
« no previous file with comments | « chrome/browser/android/data_usage/data_use_tab_model.h ('k') | chrome/browser/android/data_usage/external_data_use_reporter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698