| Index: chrome/browser/chromeos/net/network_portal_detector_impl.h
|
| diff --git a/chrome/browser/chromeos/net/network_portal_detector_impl.h b/chrome/browser/chromeos/net/network_portal_detector_impl.h
|
| index c28afefd7577232dc4a2a393d36cd2cc2dc95bfd..84aa5f2439c088f60d93d0e37ea3fb4c6bd005ea 100644
|
| --- a/chrome/browser/chromeos/net/network_portal_detector_impl.h
|
| +++ b/chrome/browser/chromeos/net/network_portal_detector_impl.h
|
| @@ -5,12 +5,12 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_NET_NETWORK_PORTAL_DETECTOR_IMPL_H_
|
| #define CHROME_BROWSER_CHROMEOS_NET_NETWORK_PORTAL_DETECTOR_IMPL_H_
|
|
|
| +#include <map>
|
| #include <memory>
|
| #include <string>
|
|
|
| #include "base/cancelable_callback.h"
|
| #include "base/compiler_specific.h"
|
| -#include "base/containers/hash_tables.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/weak_ptr.h"
|
| @@ -75,7 +75,7 @@ class NetworkPortalDetectorImpl : public NetworkPortalDetector,
|
| friend class NetworkPortalDetectorImplTest;
|
| friend class NetworkPortalDetectorImplBrowserTest;
|
|
|
| - using CaptivePortalStateMap = base::hash_map<std::string, CaptivePortalState>;
|
| + using CaptivePortalStateMap = std::map<std::string, CaptivePortalState>;
|
|
|
| enum State {
|
| // No portal check is running.
|
|
|