summaryrefslogtreecommitdiffstats
path: root/media/mtp/MtpUtils.h
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2010-05-14 10:10:36 -0400
committerMike Lockwood <lockwood@android.com>2010-05-14 10:10:36 -0400
commit7850ef999740f214a1990a9c090d3f3865d435aa (patch)
tree2320628e762e31b799c21f3a2d8177c271e47656 /media/mtp/MtpUtils.h
parent3c6d0f4c956494241c0c243b079f42049d832d7d (diff)
downloadframeworks_av-7850ef999740f214a1990a9c090d3f3865d435aa.zip
frameworks_av-7850ef999740f214a1990a9c090d3f3865d435aa.tar.gz
frameworks_av-7850ef999740f214a1990a9c090d3f3865d435aa.tar.bz2
Move MTP code to the android namespace
Change-Id: I5da48038fd5e4cdeefaeba42cdc74eb588b3448d Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'media/mtp/MtpUtils.h')
-rw-r--r--media/mtp/MtpUtils.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/media/mtp/MtpUtils.h b/media/mtp/MtpUtils.h
index 2e80762..edd78cb 100644
--- a/media/mtp/MtpUtils.h
+++ b/media/mtp/MtpUtils.h
@@ -20,6 +20,8 @@
#include "utils/String8.h"
#include "utils/Vector.h"
+namespace android {
+
class MtpStorage;
typedef android::Vector<MtpStorage *> MtpStorageList;
@@ -31,4 +33,6 @@ typedef android::String8 MtpString;
bool parseDateTime(const char* dateTime, time_t& outSeconds);
void formatDateTime(time_t seconds, char* buffer, int bufferLength);
+}; // namespace android
+
#endif // _MTP_UTILS_H