summaryrefslogtreecommitdiffstats
path: root/include/sysutils/FrameworkClient.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/FrameworkClient.h
parentf1b244c3fafb9c0b96b10a3aea77bb6690fa9074 (diff)
downloadcore-b7286aa02e1e554a1ef21a957fabe593f05c1260.tar.gz
core-b7286aa02e1e554a1ef21a957fabe593f05c1260.tar.bz2
core-b7286aa02e1e554a1ef21a957fabe593f05c1260.zip
remove dependency on utils/List.h
Change-Id: I9a1e996be645520d1d5a056337303a6e5ed646e9
Diffstat (limited to 'include/sysutils/FrameworkClient.h')
-rw-r--r--include/sysutils/FrameworkClient.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sysutils/FrameworkClient.h b/include/sysutils/FrameworkClient.h
index 0ef075377..4a3f0de0e 100644
--- a/include/sysutils/FrameworkClient.h
+++ b/include/sysutils/FrameworkClient.h
@@ -1,7 +1,7 @@
#ifndef _FRAMEWORK_CLIENT_H
#define _FRAMEWORK_CLIENT_H
-#include "../../../frameworks/base/include/utils/List.h"
+#include "List.h"
#include <pthread.h>
@@ -17,5 +17,5 @@ public:
int sendMsg(const char *msg, const char *data);
};
-typedef android::List<FrameworkClient *> FrameworkClientCollection;
+typedef android::sysutils::List<FrameworkClient *> FrameworkClientCollection;
#endif