summaryrefslogtreecommitdiffstats
path: root/chromeos/dbus/debug_daemon_client.h
diff options
context:
space:
mode:
authorpneubeck@chromium.org <pneubeck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-03 09:56:07 +0000
committerpneubeck@chromium.org <pneubeck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-03 09:56:07 +0000
commit5d2cfdfe2bf4a5010fb00f8f03bf277d14f5641c (patch)
treefe66c4376e96a3f3e3392505c9a2b37b54571cdf /chromeos/dbus/debug_daemon_client.h
parent13a350cc9d7ec3d4225f9d4966e0d3e58a3d77b6 (diff)
downloadchromium_src-5d2cfdfe2bf4a5010fb00f8f03bf277d14f5641c.zip
chromium_src-5d2cfdfe2bf4a5010fb00f8f03bf277d14f5641c.tar.gz
chromium_src-5d2cfdfe2bf4a5010fb00f8f03bf277d14f5641c.tar.bz2
Move DBusClient stub implementations into separate files.
This allows to create these stubs directly without routing through the static Create() function in the client's interface. BUG=275286 R=satorux@chromium.org Review URL: https://codereview.chromium.org/91373004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238329 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/dbus/debug_daemon_client.h')
-rw-r--r--chromeos/dbus/debug_daemon_client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromeos/dbus/debug_daemon_client.h b/chromeos/dbus/debug_daemon_client.h
index 711c2cb..a7091a4 100644
--- a/chromeos/dbus/debug_daemon_client.h
+++ b/chromeos/dbus/debug_daemon_client.h
@@ -6,8 +6,8 @@
#define CHROMEOS_DBUS_DEBUG_DAEMON_CLIENT_H_
#include "base/callback.h"
-#include "base/platform_file.h"
#include "base/memory/ref_counted_memory.h"
+#include "base/platform_file.h"
#include "chromeos/chromeos_export.h"
#include "chromeos/dbus/dbus_client.h"
#include "chromeos/dbus/dbus_client_implementation_type.h"
@@ -143,7 +143,7 @@ class CHROMEOS_EXPORT DebugDaemonClient : public DBusClient {
// Factory function, creates a new instance and returns ownership.
// For normal usage, access the singleton via DBusThreadManager::Get().
- static DebugDaemonClient* Create(DBusClientImplementationType type);
+ static DebugDaemonClient* Create();
protected:
// Create() should be used instead.