diff options
author | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-21 07:30:50 +0000 |
---|---|---|
committer | hashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-21 07:30:50 +0000 |
commit | 7677424efd957583d230f9f9cc4956079efbcc4b (patch) | |
tree | 4ce9603b99523601ab728af19c411d609f1f7934 /chromeos/dbus | |
parent | 11530d2c4423debe747b2051caf64bdd36dfc055 (diff) | |
download | chromium_src-7677424efd957583d230f9f9cc4956079efbcc4b.zip chromium_src-7677424efd957583d230f9f9cc4956079efbcc4b.tar.gz chromium_src-7677424efd957583d230f9f9cc4956079efbcc4b.tar.bz2 |
Reimplement SetNetworkIPConfigProperty and RemoveIPconfig without Libcros
BUG=chromium-os:16557
TEST=unit_tests --gtest_filter="CrosNetworkFunctions*"
Review URL: http://codereview.chromium.org/10143007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133340 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/dbus')
-rw-r--r-- | chromeos/dbus/flimflam_ipconfig_client.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chromeos/dbus/flimflam_ipconfig_client.h b/chromeos/dbus/flimflam_ipconfig_client.h index 6449bcc..f4f5f6f 100644 --- a/chromeos/dbus/flimflam_ipconfig_client.h +++ b/chromeos/dbus/flimflam_ipconfig_client.h @@ -81,13 +81,13 @@ class CHROMEOS_EXPORT FlimflamIPConfigClient { // Calls Remove method. // |callback| is called after the method call succeeds. - // - // TODO(hashimoto): Refactor CrosRemoveIPConfig to remove this method. virtual void Remove(const dbus::ObjectPath& ipconfig_path, const VoidCallback& callback) = 0; // DEPRECATED DO NOT USE: Calls Remove method and blocks until the method call // finishes. + // + // TODO(hashimoto): Refactor CrosRemoveIPConfig to remove this method. virtual bool CallRemoveAndBlock(const dbus::ObjectPath& ipconfig_path) = 0; protected: |