Make all references use smart pointers.

BUG=5972398

Change-Id: I7b8c2930ccf7d64623270cd3d0550aa6a852f2e5
diff --git a/cpp/ScriptC.h b/cpp/ScriptC.h
index b68f61c..8711b8d 100644
--- a/cpp/ScriptC.h
+++ b/cpp/ScriptC.h
@@ -22,6 +22,9 @@
 
 #include "Script.h"
 
+namespace android {
+namespace renderscriptCpp {
+
 class ScriptC : public Script {
 protected:
     ScriptC(RenderScript *rs,
@@ -31,4 +34,7 @@
 
 };
 
+
+}
+}
 #endif