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

Side by Side Diff: chrome/browser/chromeos/net/network_portal_detector_test_impl.h

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698