OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "components/drive/drive_test_util.h" | 5 #include "components/drive/drive_test_util.h" |
6 | 6 |
7 #include "base/prefs/pref_registry_simple.h" | |
8 #include "base/prefs/testing_pref_service.h" | |
9 #include "components/drive/drive.pb.h" | 7 #include "components/drive/drive.pb.h" |
10 #include "components/drive/drive_pref_names.h" | 8 #include "components/drive/drive_pref_names.h" |
| 9 #include "components/prefs/pref_registry_simple.h" |
| 10 #include "components/prefs/testing_pref_service.h" |
11 | 11 |
12 namespace drive { | 12 namespace drive { |
13 namespace test_util { | 13 namespace test_util { |
14 | 14 |
15 void RegisterDrivePrefs(PrefRegistrySimple* pref_registry) { | 15 void RegisterDrivePrefs(PrefRegistrySimple* pref_registry) { |
16 pref_registry->RegisterBooleanPref( | 16 pref_registry->RegisterBooleanPref( |
17 prefs::kDisableDrive, | 17 prefs::kDisableDrive, |
18 false); | 18 false); |
19 pref_registry->RegisterBooleanPref( | 19 pref_registry->RegisterBooleanPref( |
20 prefs::kDisableDriveOverCellular, | 20 prefs::kDisableDriveOverCellular, |
(...skipping 12 matching lines...) Expand all Loading... |
33 NotifyObserversOfConnectionTypeChange(); | 33 NotifyObserversOfConnectionTypeChange(); |
34 } | 34 } |
35 | 35 |
36 net::NetworkChangeNotifier::ConnectionType | 36 net::NetworkChangeNotifier::ConnectionType |
37 FakeNetworkChangeNotifier::GetCurrentConnectionType() const { | 37 FakeNetworkChangeNotifier::GetCurrentConnectionType() const { |
38 return type_; | 38 return type_; |
39 } | 39 } |
40 | 40 |
41 } // namespace test_util | 41 } // namespace test_util |
42 } // namespace drive | 42 } // namespace drive |
OLD | NEW |