Index: chromeos/dbus/system_clock_client.cc |
diff --git a/chromeos/dbus/system_clock_client.cc b/chromeos/dbus/system_clock_client.cc |
index 6775c644b8f670f4c65b26f6cadb43df2282efaa..7d5f4a4598b2aec174f9aabfadf39e682b40c3d2 100644 |
--- a/chromeos/dbus/system_clock_client.cc |
+++ b/chromeos/dbus/system_clock_client.cc |
@@ -5,7 +5,6 @@ |
#include "chromeos/dbus/system_clock_client.h" |
#include "base/bind.h" |
-#include "chromeos/dbus/fake_system_clock_client.h" |
#include "dbus/bus.h" |
#include "dbus/message.h" |
#include "dbus/object_path.h" |
@@ -84,13 +83,8 @@ SystemClockClient::~SystemClockClient() { |
} |
// static |
-SystemClockClient* SystemClockClient::Create( |
- DBusClientImplementationType type) { |
- if (type == REAL_DBUS_CLIENT_IMPLEMENTATION) { |
- return new SystemClockClientImpl(); |
- } |
- DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type); |
- return new FakeSystemClockClient(); |
+SystemClockClient* SystemClockClient::Create() { |
+ return new SystemClockClientImpl(); |
} |
} // namespace chromeos |