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
3 // found in the LICENSE file.
5 #include "components/drive/drive_test_util.h"
7 #include "base/prefs/pref_registry_simple.h"
8 #include "base/prefs/testing_pref_service.h"
9 #include "components/drive/drive.pb.h"
10 #include "components/drive/drive_pref_names.h"
15 void RegisterDrivePrefs(PrefRegistrySimple
* pref_registry
) {
16 pref_registry
->RegisterBooleanPref(
19 pref_registry
->RegisterBooleanPref(
20 prefs::kDisableDriveOverCellular
,
22 pref_registry
->RegisterBooleanPref(
23 prefs::kDisableDriveHostedFiles
,
27 FakeNetworkChangeNotifier::FakeNetworkChangeNotifier()
28 : type_(CONNECTION_WIFI
) {
31 void FakeNetworkChangeNotifier::SetConnectionType(ConnectionType type
) {
33 NotifyObserversOfConnectionTypeChange();
36 net::NetworkChangeNotifier::ConnectionType
37 FakeNetworkChangeNotifier::GetCurrentConnectionType() const {
41 } // namespace test_util