summaryrefslogtreecommitdiffstats
path: root/media/mtp/MtpPacket.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
commit8d3257a7dc10e1b3fda03e00f40d1b65d699ff23 (patch)
tree8a84411c35a1c47348786f5e034a365f51647d42 /media/mtp/MtpPacket.h
parent77b8e6149e497cedbd98c7fae83886be0d6fb215 (diff)
downloadframeworks_base-8d3257a7dc10e1b3fda03e00f40d1b65d699ff23.zip
frameworks_base-8d3257a7dc10e1b3fda03e00f40d1b65d699ff23.tar.gz
frameworks_base-8d3257a7dc10e1b3fda03e00f40d1b65d699ff23.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/MtpPacket.h')
-rw-r--r--media/mtp/MtpPacket.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/media/mtp/MtpPacket.h b/media/mtp/MtpPacket.h
index 26a3c24..6632c6e 100644
--- a/media/mtp/MtpPacket.h
+++ b/media/mtp/MtpPacket.h
@@ -17,13 +17,17 @@
#ifndef _MTP_PACKET_H
#define _MTP_PACKET_H
-class MtpStringBuffer;
-
#include "mtp.h"
#include "MtpUtils.h"
#include <stdint.h>
+struct usb_endpoint;
+
+namespace android {
+
+class MtpStringBuffer;
+
class MtpPacket {
protected:
@@ -65,4 +69,6 @@ protected:
void putUInt32(int offset, uint32_t value);
};
+}; // namespace android
+
#endif // _MTP_PACKET_H