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

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

Issue 13957012: Adding a NetworkProfileHandler used by ManagedNetworkConfigurationHandler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add preliminary userhash retrieval. Created 7 years, 7 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 (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 #ifndef CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_ 5 #ifndef CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_
6 #define CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_ 6 #define CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 bool add_to_watch_list) = 0; 49 bool add_to_watch_list) = 0;
50 virtual void RemoveService(const std::string& service_path) = 0; 50 virtual void RemoveService(const std::string& service_path) = 0;
51 virtual void ClearServices() = 0; 51 virtual void ClearServices() = 0;
52 virtual void AddTechnology(const std::string& type, bool enabled) = 0; 52 virtual void AddTechnology(const std::string& type, bool enabled) = 0;
53 virtual void RemoveTechnology(const std::string& type) = 0; 53 virtual void RemoveTechnology(const std::string& type) = 0;
54 virtual void SetTechnologyInitializing(const std::string& type, 54 virtual void SetTechnologyInitializing(const std::string& type,
55 bool initializing) = 0; 55 bool initializing) = 0;
56 virtual void AddGeoNetwork(const std::string& technology, 56 virtual void AddGeoNetwork(const std::string& technology,
57 const base::DictionaryValue& network) = 0; 57 const base::DictionaryValue& network) = 0;
58 58
59 // Does not create an actual profile in the ProfileClient but update the
60 // profiles list and sends a notification to observers. This should only be
61 // called by the ProfileStub. In all other cases, use
62 // ShillProfileClient::TestInterface::AddProfile.
63 virtual void AddProfile(const std::string& profile_path) = 0;
64
59 // Used to reset all properties; does not notify observers. 65 // Used to reset all properties; does not notify observers.
60 virtual void ClearProperties() = 0; 66 virtual void ClearProperties() = 0;
61 67
62 protected: 68 protected:
63 virtual ~TestInterface() {} 69 virtual ~TestInterface() {}
64 }; 70 };
65 71
66 virtual ~ShillManagerClient(); 72 virtual ~ShillManagerClient();
67 73
68 // Factory function, creates a new instance which is owned by the caller. 74 // Factory function, creates a new instance which is owned by the caller.
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 // Create() should be used instead. 195 // Create() should be used instead.
190 ShillManagerClient(); 196 ShillManagerClient();
191 197
192 private: 198 private:
193 DISALLOW_COPY_AND_ASSIGN(ShillManagerClient); 199 DISALLOW_COPY_AND_ASSIGN(ShillManagerClient);
194 }; 200 };
195 201
196 } // namespace chromeos 202 } // namespace chromeos
197 203
198 #endif // CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_ 204 #endif // CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698