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

Unified Diff: chromeos/dbus/shill_profile_client.cc

Issue 12676017: Adding policy support to the new network configuration stack. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove policy initialized flags and wrap PolicyMaps with scoped_ptr. Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chromeos/dbus/shill_profile_client.cc
diff --git a/chromeos/dbus/shill_profile_client.cc b/chromeos/dbus/shill_profile_client.cc
index a86ff785cce6526e8b947cf323de98af35445efe..511a22e88bb782bdf46beb06f2e70816e0538884 100644
--- a/chromeos/dbus/shill_profile_client.cc
+++ b/chromeos/dbus/shill_profile_client.cc
@@ -20,12 +20,10 @@ namespace chromeos {
namespace {
-// The ShillProfileClient implementation.
class ShillProfileClientImpl : public ShillProfileClient {
public:
explicit ShillProfileClientImpl(dbus::Bus* bus);
- /////////////////////////////////////
// ShillProfileClient overrides.
virtual void AddPropertyChangedObserver(
const dbus::ObjectPath& profile_path,
@@ -51,6 +49,10 @@ class ShillProfileClientImpl : public ShillProfileClient {
const base::Closure& callback,
const ErrorCallback& error_callback) OVERRIDE;
+ virtual TestInterface* GetTestInterface() OVERRIDE {
+ return NULL;
pastarmovj 2013/04/11 14:46:29 Maybe put a NOTREACHED() here too to make sure thi
stevenjb 2013/04/11 18:20:08 Actually, I think it's better (easier to debug) if
pneubeck (no reviews) 2013/04/15 12:16:24 NOTREACHED will still need the NULL return. CHECK(
pneubeck (no reviews) 2013/04/15 12:16:24 Done.
pastarmovj 2013/04/16 11:31:17 I am not sure if it will be easier to debug since
+ }
+
private:
typedef std::map<std::string, ShillClientHelper*> HelperMap;

Powered by Google App Engine
This is Rietveld 408576698