| Index: chromeos/dbus/shill_client_helper.cc
 | 
| diff --git a/chromeos/dbus/shill_client_helper.cc b/chromeos/dbus/shill_client_helper.cc
 | 
| index 497e0fd86bc3ff5c5cdc044ca12f58643cf69def..c2c09359ff0d49311fe63e76efa4515c8bf90708 100644
 | 
| --- a/chromeos/dbus/shill_client_helper.cc
 | 
| +++ b/chromeos/dbus/shill_client_helper.cc
 | 
| @@ -150,21 +150,6 @@ bool ShillClientHelper::CallVoidMethodAndBlock(
 | 
|    return true;
 | 
|  }
 | 
|  
 | 
| -dbus::ObjectPath ShillClientHelper::CallObjectPathMethodAndBlock(
 | 
| -    dbus::MethodCall* method_call) {
 | 
| -  scoped_ptr<dbus::Response> response(
 | 
| -      blocking_method_caller_.CallMethodAndBlock(method_call));
 | 
| -  if (!response.get())
 | 
| -    return dbus::ObjectPath();
 | 
| -
 | 
| -  dbus::MessageReader reader(response.get());
 | 
| -  dbus::ObjectPath result;
 | 
| -  if (!reader.PopObjectPath(&result))
 | 
| -    return dbus::ObjectPath();
 | 
| -
 | 
| -  return result;
 | 
| -}
 | 
| -
 | 
|  base::DictionaryValue* ShillClientHelper::CallDictionaryValueMethodAndBlock(
 | 
|      dbus::MethodCall* method_call) {
 | 
|    scoped_ptr<dbus::Response> response(
 | 
| 
 |