| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_NET_NETWORK_PORTAL_DETECTOR_TEST_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_NET_NETWORK_PORTAL_DETECTOR_TEST_IMPL_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_NET_NETWORK_PORTAL_DETECTOR_TEST_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_NET_NETWORK_PORTAL_DETECTOR_TEST_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 12 #include "base/containers/hash_tables.h" | 11 #include "base/containers/hash_tables.h" |
| 12 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 15 #include "chromeos/network/portal_detector/network_portal_detector.h" | 15 #include "chromeos/network/portal_detector/network_portal_detector.h" |
| 16 | 16 |
| 17 namespace chromeos { | 17 namespace chromeos { |
| 18 | 18 |
| 19 class NetworkPortalDetectorTestImpl : public NetworkPortalDetector { | 19 class NetworkPortalDetectorTestImpl : public NetworkPortalDetector { |
| 20 public: | 20 public: |
| 21 NetworkPortalDetectorTestImpl(); | 21 NetworkPortalDetectorTestImpl(); |
| 22 ~NetworkPortalDetectorTestImpl() override; | 22 ~NetworkPortalDetectorTestImpl() override; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 51 scoped_ptr<NetworkState> default_network_; | 51 scoped_ptr<NetworkState> default_network_; |
| 52 CaptivePortalStateMap portal_state_map_; | 52 CaptivePortalStateMap portal_state_map_; |
| 53 PortalDetectorStrategy::StrategyId strategy_id_; | 53 PortalDetectorStrategy::StrategyId strategy_id_; |
| 54 | 54 |
| 55 DISALLOW_COPY_AND_ASSIGN(NetworkPortalDetectorTestImpl); | 55 DISALLOW_COPY_AND_ASSIGN(NetworkPortalDetectorTestImpl); |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace chromeos | 58 } // namespace chromeos |
| 59 | 59 |
| 60 #endif // CHROME_BROWSER_CHROMEOS_NET_NETWORK_PORTAL_DETECTOR_TEST_IMPL_H_ | 60 #endif // CHROME_BROWSER_CHROMEOS_NET_NETWORK_PORTAL_DETECTOR_TEST_IMPL_H_ |
| OLD | NEW |