Move MTP code to the android namespace

Change-Id: I5da48038fd5e4cdeefaeba42cdc74eb588b3448d
Signed-off-by: Mike Lockwood <lockwood@android.com>
diff --git a/media/mtp/MtpClient.cpp b/media/mtp/MtpClient.cpp
index 5e4adb4..c0aacac 100644
--- a/media/mtp/MtpClient.cpp
+++ b/media/mtp/MtpClient.cpp
@@ -28,6 +28,8 @@
 #include "MtpDebug.h"
 #include "MtpStringBuffer.h"
 
+namespace android {
+
 MtpClient::MtpClient(struct usb_endpoint *ep_in, struct usb_endpoint *ep_out,
             struct usb_endpoint *ep_intr)
     :   mEndpointIn(ep_in),
@@ -134,3 +136,4 @@
     }
 }
 
+}  // namespace android