Index: chromeos/dbus/image_burner_client.cc |
diff --git a/chromeos/dbus/image_burner_client.cc b/chromeos/dbus/image_burner_client.cc |
index a807f07c2514facfffd7861fcd776f1e574edff5..013affef9c60cd592941f4983fc6cce9285ec28b 100644 |
--- a/chromeos/dbus/image_burner_client.cc |
+++ b/chromeos/dbus/image_burner_client.cc |
@@ -6,7 +6,6 @@ |
#include "base/bind.h" |
#include "base/compiler_specific.h" |
-#include "chromeos/dbus/fake_image_burner_client.h" |
#include "dbus/bus.h" |
#include "dbus/message.h" |
#include "dbus/object_path.h" |
@@ -144,12 +143,8 @@ ImageBurnerClient::~ImageBurnerClient() { |
} |
// static |
-ImageBurnerClient* ImageBurnerClient::Create( |
- DBusClientImplementationType type) { |
- if (type == REAL_DBUS_CLIENT_IMPLEMENTATION) |
- return new ImageBurnerClientImpl(); |
- DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type); |
- return new FakeImageBurnerClient(); |
+ImageBurnerClient* ImageBurnerClient::Create() { |
+ return new ImageBurnerClientImpl(); |
} |
} // namespace chromeos |