Move MTP code to the android namespace

Change-Id: I5da48038fd5e4cdeefaeba42cdc74eb588b3448d
Signed-off-by: Mike Lockwood <lockwood@android.com>
diff --git a/media/mtp/SqliteStatement.h b/media/mtp/SqliteStatement.h
index 0fd8a1e..c0ebfff 100644
--- a/media/mtp/SqliteStatement.h
+++ b/media/mtp/SqliteStatement.h
@@ -17,11 +17,14 @@
 #ifndef _SQLITE_STATEMENT_H
 #define _SQLITE_STATEMENT_H
 
+#include <stdint.h>
+
 typedef struct sqlite3 sqlite3;
 typedef struct sqlite3_stmt sqlite3_stmt;
-class SqliteDatabase;
 
-#include <stdint.h>
+namespace android {
+
+class SqliteDatabase;
 
 class SqliteStatement {
 private:
@@ -48,4 +51,6 @@
     inline bool     isDone() const { return mDone; }
 };
 
+}; // namespace android
+
 #endif // _SQLITE_STATEMENT_H