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

Unified Diff: chrome/browser/chromeos/login/wizard_controller.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/chromeos/login/wizard_controller.h
diff --git a/chrome/browser/chromeos/login/wizard_controller.h b/chrome/browser/chromeos/login/wizard_controller.h
index 20d66f63139af01f42ab1282f6c804e15478693e..f2618ad5f2c465065de6adbd71d6dd3aa3a7ddb4 100644
--- a/chrome/browser/chromeos/login/wizard_controller.h
+++ b/chrome/browser/chromeos/login/wizard_controller.h
@@ -10,7 +10,6 @@
#include <string>
#include "base/compiler_specific.h"
-#include "base/containers/hash_tables.h"
#include "base/gtest_prod_util.h"
#include "base/macros.h"
#include "base/memory/linked_ptr.h"
@@ -431,7 +430,7 @@ class WizardController : public BaseScreenDelegate,
std::unique_ptr<pairing_chromeos::HostPairingController> remora_controller_;
// Maps screen names to last time of their shows.
- base::hash_map<std::string, base::Time> screen_show_times_;
+ std::map<std::string, base::Time> screen_show_times_;
// Tests check result of timezone resolve.
bool timezone_resolved_ = false;

Powered by Google App Engine
This is Rietveld 408576698