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

Side by Side Diff: chromeos/dbus/fake_shill_manager_client.h

Issue 175243004: Chrome OS: Use Manager.DefaultService for Default Network (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 9 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 | Annotate | Revision Log
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 CHROMEOS_DBUS_FAKE_SHILL_MANAGER_CLIENT_H_ 5 #ifndef CHROMEOS_DBUS_FAKE_SHILL_MANAGER_CLIENT_H_
6 #define CHROMEOS_DBUS_FAKE_SHILL_MANAGER_CLIENT_H_ 6 #define CHROMEOS_DBUS_FAKE_SHILL_MANAGER_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "chromeos/chromeos_export.h" 12 #include "chromeos/chromeos_export.h"
13 #include "chromeos/dbus/shill_manager_client.h" 13 #include "chromeos/dbus/shill_manager_client.h"
14 14
15 namespace chromeos { 15 namespace chromeos {
16 16
17 // A fake implementation of ShillManagerClient. This works in close coordination 17 // A fake implementation of ShillManagerClient. This works in close coordination
18 // with FakeShillServiceClient. FakeShillDeviceClient, and 18 // with FakeShillServiceClient. FakeShillDeviceClient, and
19 // FakeShillProfileClient, and is not intended to be used independently. 19 // FakeShillProfileClient, and is not intended to be used independently.
20 class CHROMEOS_EXPORT FakeShillManagerClient : 20 class CHROMEOS_EXPORT FakeShillManagerClient
21 public ShillManagerClient, 21 : public ShillManagerClient,
22 public ShillManagerClient::TestInterface { 22 public ShillManagerClient::TestInterface {
23 public: 23 public:
24 FakeShillManagerClient(); 24 FakeShillManagerClient();
25 virtual ~FakeShillManagerClient(); 25 virtual ~FakeShillManagerClient();
26 26
27 // ShillManagerClient overrides 27 // ShillManagerClient overrides
28 virtual void Init(dbus::Bus* bus) OVERRIDE; 28 virtual void Init(dbus::Bus* bus) OVERRIDE;
29 virtual void AddPropertyChangedObserver( 29 virtual void AddPropertyChangedObserver(
30 ShillPropertyChangedObserver* observer) OVERRIDE; 30 ShillPropertyChangedObserver* observer) OVERRIDE;
31 virtual void RemovePropertyChangedObserver( 31 virtual void RemovePropertyChangedObserver(
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 virtual void RemoveDevice(const std::string& device_path) OVERRIDE; 84 virtual void RemoveDevice(const std::string& device_path) OVERRIDE;
85 virtual void ClearDevices() OVERRIDE; 85 virtual void ClearDevices() OVERRIDE;
86 virtual void AddTechnology(const std::string& type, bool enabled) OVERRIDE; 86 virtual void AddTechnology(const std::string& type, bool enabled) OVERRIDE;
87 virtual void RemoveTechnology(const std::string& type) OVERRIDE; 87 virtual void RemoveTechnology(const std::string& type) OVERRIDE;
88 virtual void SetTechnologyInitializing(const std::string& type, 88 virtual void SetTechnologyInitializing(const std::string& type,
89 bool initializing) OVERRIDE; 89 bool initializing) OVERRIDE;
90 virtual void AddGeoNetwork(const std::string& technology, 90 virtual void AddGeoNetwork(const std::string& technology,
91 const base::DictionaryValue& network) OVERRIDE; 91 const base::DictionaryValue& network) OVERRIDE;
92 virtual void AddProfile(const std::string& profile_path) OVERRIDE; 92 virtual void AddProfile(const std::string& profile_path) OVERRIDE;
93 virtual void ClearProperties() OVERRIDE; 93 virtual void ClearProperties() OVERRIDE;
94 virtual void SetManagerProperty(const std::string& key,
95 const base::Value& value) OVERRIDE;
94 virtual void AddManagerService(const std::string& service_path, 96 virtual void AddManagerService(const std::string& service_path,
95 bool add_to_visible_list, 97 bool add_to_visible_list,
96 bool add_to_watch_list) OVERRIDE; 98 bool add_to_watch_list) OVERRIDE;
97 virtual void RemoveManagerService(const std::string& service_path) OVERRIDE; 99 virtual void RemoveManagerService(const std::string& service_path) OVERRIDE;
98 virtual void ClearManagerServices() OVERRIDE; 100 virtual void ClearManagerServices() OVERRIDE;
101 virtual void ServiceStateChanged(const std::string& service_path,
102 const std::string& state) OVERRIDE;
99 virtual void SortManagerServices() OVERRIDE; 103 virtual void SortManagerServices() OVERRIDE;
100 104
101 private: 105 private:
102 void AddServiceToWatchList(const std::string& service_path); 106 void AddServiceToWatchList(const std::string& service_path);
103 void SetDefaultProperties(); 107 void SetDefaultProperties();
104 void PassStubProperties(const DictionaryValueCallback& callback) const; 108 void PassStubProperties(const DictionaryValueCallback& callback) const;
105 void PassStubGeoNetworks(const DictionaryValueCallback& callback) const; 109 void PassStubGeoNetworks(const DictionaryValueCallback& callback) const;
106 void CallNotifyObserversPropertyChanged(const std::string& property, 110 void CallNotifyObserversPropertyChanged(const std::string& property);
107 int delay_ms);
108 void NotifyObserversPropertyChanged(const std::string& property); 111 void NotifyObserversPropertyChanged(const std::string& property);
109 base::ListValue* GetListProperty(const std::string& property); 112 base::ListValue* GetListProperty(const std::string& property);
110 bool TechnologyEnabled(const std::string& type) const; 113 bool TechnologyEnabled(const std::string& type) const;
111 void SetTechnologyEnabled(const std::string& type, 114 void SetTechnologyEnabled(const std::string& type,
112 const base::Closure& callback, 115 const base::Closure& callback,
113 bool enabled); 116 bool enabled);
114 base::ListValue* GetEnabledServiceList(const std::string& property) const; 117 base::ListValue* GetEnabledServiceList(const std::string& property) const;
115 void ScanCompleted(const std::string& device_path, 118 void ScanCompleted(const std::string& device_path,
116 const base::Closure& callback); 119 const base::Closure& callback);
117 120
118 // Dictionary of property name -> property value 121 // Dictionary of property name -> property value
119 base::DictionaryValue stub_properties_; 122 base::DictionaryValue stub_properties_;
120 // Dictionary of technology -> list of property dictionaries 123 // Dictionary of technology -> list of property dictionaries
121 base::DictionaryValue stub_geo_networks_; 124 base::DictionaryValue stub_geo_networks_;
122 125
123 ObserverList<ShillPropertyChangedObserver> observer_list_; 126 ObserverList<ShillPropertyChangedObserver> observer_list_;
124 127
125 // Note: This should remain the last member so it'll be destroyed and 128 // Note: This should remain the last member so it'll be destroyed and
126 // invalidate its weak pointers before any other members are destroyed. 129 // invalidate its weak pointers before any other members are destroyed.
127 base::WeakPtrFactory<FakeShillManagerClient> weak_ptr_factory_; 130 base::WeakPtrFactory<FakeShillManagerClient> weak_ptr_factory_;
128 131
132 // Track the default service for signaling Manager.DefaultService.
133 std::string default_service_;
134
129 DISALLOW_COPY_AND_ASSIGN(FakeShillManagerClient); 135 DISALLOW_COPY_AND_ASSIGN(FakeShillManagerClient);
130 }; 136 };
131 137
132 } // namespace chromeos 138 } // namespace chromeos
133 139
134 #endif // CHROMEOS_DBUS_FAKE_SHILL_MANAGER_CLIENT_H_ 140 #endif // CHROMEOS_DBUS_FAKE_SHILL_MANAGER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/proxy_config_service_impl_unittest.cc ('k') | chromeos/dbus/fake_shill_manager_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698