summaryrefslogtreecommitdiffstats
path: root/chromeos/dbus/shill_service_client_unittest.cc
diff options
context:
space:
mode:
authorstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-11 20:10:36 +0000
committerstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-11 20:10:36 +0000
commit1c641e27988557e60163be111275db567fddda6b (patch)
treefaffdf918da644eac02da6e87c784f764761c2ae /chromeos/dbus/shill_service_client_unittest.cc
parent165bae7dac7c4e05eca691c58aa8eafe07b1fcc4 (diff)
downloadchromium_src-1c641e27988557e60163be111275db567fddda6b.zip
chromium_src-1c641e27988557e60163be111275db567fddda6b.tar.gz
chromium_src-1c641e27988557e60163be111275db567fddda6b.tar.bz2
Eliminate NetworkLibrary!
There should be no functionality changes with this CL, it should only eliminate unused code. It also removes cros_network_functions and all Shill blocking dbus calls (now unused). BUG=245494 Review URL: https://chromiumcodereview.appspot.com/23477058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@222615 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/dbus/shill_service_client_unittest.cc')
-rw-r--r--chromeos/dbus/shill_service_client_unittest.cc15
1 files changed, 0 insertions, 15 deletions
diff --git a/chromeos/dbus/shill_service_client_unittest.cc b/chromeos/dbus/shill_service_client_unittest.cc
index 4267a45..9d70eab 100644
--- a/chromeos/dbus/shill_service_client_unittest.cc
+++ b/chromeos/dbus/shill_service_client_unittest.cc
@@ -301,19 +301,4 @@ TEST_F(ShillServiceClientTest, ActivateCellularModem) {
message_loop_.RunUntilIdle();
}
-TEST_F(ShillServiceClientTest, CallActivateCellularModemAndBlock) {
- const char kCarrier[] = "carrier";
- // Create response.
- scoped_ptr<dbus::Response> response(dbus::Response::CreateEmpty());
-
- // Set expectations.
- PrepareForMethodCall(flimflam::kActivateCellularModemFunction,
- base::Bind(&ExpectStringArgument, kCarrier),
- response.get());
- // Call method.
- const bool result = client_->CallActivateCellularModemAndBlock(
- dbus::ObjectPath(kExampleServicePath), kCarrier);
- EXPECT_TRUE(result);
-}
-
} // namespace chromeos