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

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

Issue 12634019: NetworkChangeNotifierChromeos: Handle IPConfig property changes on the default network (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more cleanup Created 7 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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_SHILL_SERVICE_CLIENT_STUB_H_ 5 #ifndef CHROMEOS_DBUS_SHILL_SERVICE_CLIENT_STUB_H_
6 #define CHROMEOS_DBUS_SHILL_SERVICE_CLIENT_STUB_H_ 6 #define CHROMEOS_DBUS_SHILL_SERVICE_CLIENT_STUB_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 virtual bool CallActivateCellularModemAndBlock( 65 virtual bool CallActivateCellularModemAndBlock(
66 const dbus::ObjectPath& service_path, 66 const dbus::ObjectPath& service_path,
67 const std::string& carrier) OVERRIDE; 67 const std::string& carrier) OVERRIDE;
68 virtual ShillServiceClient::TestInterface* GetTestInterface() OVERRIDE; 68 virtual ShillServiceClient::TestInterface* GetTestInterface() OVERRIDE;
69 69
70 // ShillServiceClient::TestInterface overrides. 70 // ShillServiceClient::TestInterface overrides.
71 virtual void AddService(const std::string& service_path, 71 virtual void AddService(const std::string& service_path,
72 const std::string& name, 72 const std::string& name,
73 const std::string& type, 73 const std::string& type,
74 const std::string& state, 74 const std::string& state,
75 const std::string& ipconfig_path,
75 bool add_to_watch_list) OVERRIDE; 76 bool add_to_watch_list) OVERRIDE;
76 virtual void RemoveService(const std::string& service_path) OVERRIDE; 77 virtual void RemoveService(const std::string& service_path) OVERRIDE;
77 virtual void SetServiceProperty(const std::string& service_path, 78 virtual void SetServiceProperty(const std::string& service_path,
78 const std::string& property, 79 const std::string& property,
79 const base::Value& value) OVERRIDE; 80 const base::Value& value) OVERRIDE;
80 virtual const base::DictionaryValue* GetServiceProperties( 81 virtual const base::DictionaryValue* GetServiceProperties(
81 const std::string& service_path) const OVERRIDE; 82 const std::string& service_path) const OVERRIDE;
82 virtual void ClearServices() OVERRIDE; 83 virtual void ClearServices() OVERRIDE;
83 84
84 private: 85 private:
(...skipping 15 matching lines...) Expand all
100 // Note: This should remain the last member so it'll be destroyed and 101 // Note: This should remain the last member so it'll be destroyed and
101 // invalidate its weak pointers before any other members are destroyed. 102 // invalidate its weak pointers before any other members are destroyed.
102 base::WeakPtrFactory<ShillServiceClientStub> weak_ptr_factory_; 103 base::WeakPtrFactory<ShillServiceClientStub> weak_ptr_factory_;
103 104
104 DISALLOW_COPY_AND_ASSIGN(ShillServiceClientStub); 105 DISALLOW_COPY_AND_ASSIGN(ShillServiceClientStub);
105 }; 106 };
106 107
107 } // namespace chromeos 108 } // namespace chromeos
108 109
109 #endif // CHROMEOS_DBUS_SHILL_SERVICE_CLIENT_STUB_H_ 110 #endif // CHROMEOS_DBUS_SHILL_SERVICE_CLIENT_STUB_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698