summaryrefslogtreecommitdiffstats
path: root/include/sysutils/SocketClient.h
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2012-03-05 16:45:55 -0800
committerMathias Agopian <mathias@google.com>2012-03-05 17:08:19 -0800
commitb7286aa02e1e554a1ef21a957fabe593f05c1260 (patch)
treec09ec159fc62be475468e54930c4f4ac7e10d1d8 /include/sysutils/SocketClient.h
parentf1b244c3fafb9c0b96b10a3aea77bb6690fa9074 (diff)
downloadsystem_core-b7286aa02e1e554a1ef21a957fabe593f05c1260.zip
system_core-b7286aa02e1e554a1ef21a957fabe593f05c1260.tar.gz
system_core-b7286aa02e1e554a1ef21a957fabe593f05c1260.tar.bz2
remove dependency on utils/List.h
Change-Id: I9a1e996be645520d1d5a056337303a6e5ed646e9
Diffstat (limited to 'include/sysutils/SocketClient.h')
-rw-r--r--include/sysutils/SocketClient.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sysutils/SocketClient.h b/include/sysutils/SocketClient.h
index 7d2b1d6..cee863f 100644
--- a/include/sysutils/SocketClient.h
+++ b/include/sysutils/SocketClient.h
@@ -1,7 +1,7 @@
#ifndef _SOCKET_CLIENT_H
#define _SOCKET_CLIENT_H
-#include "../../../frameworks/base/include/utils/List.h"
+#include "List.h"
#include <pthread.h>
#include <sys/types.h>
@@ -48,5 +48,5 @@ public:
bool decRef(); // returns true at 0 (but note: SocketClient already deleted)
};
-typedef android::List<SocketClient *> SocketClientCollection;
+typedef android::sysutils::List<SocketClient *> SocketClientCollection;
#endif