remove dependency on utils/List.h

Change-Id: I9a1e996be645520d1d5a056337303a6e5ed646e9
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 @@
     bool decRef(); // returns true at 0 (but note: SocketClient already deleted)
 };
 
-typedef android::List<SocketClient *> SocketClientCollection;
+typedef android::sysutils::List<SocketClient *> SocketClientCollection;
 #endif