summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Derek Sollenberger <djsollen@google.com> 2014-06-18 15:15:45 -0400
committer Derek Sollenberger <djsollen@google.com> 2014-06-18 15:17:50 -0400
commita0dc40409265fa46c3ceee91ec68d2f45b8f67e8 (patch)
tree9a7c2de41e1972c1699d4b2e2e79202302935b49
parentc802c8cda234129c1ce3c7a939bd68a1d5813ce6 (diff)
Fix namespace for picture
Change-Id: Id21ebcf2ba4befb4af15cd1d493428a64599afc1
-rw-r--r--core/jni/android/graphics/Picture.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/jni/android/graphics/Picture.cpp b/core/jni/android/graphics/Picture.cpp
index 4a62dc271522..bc0c25f3af1a 100644
--- a/core/jni/android/graphics/Picture.cpp
+++ b/core/jni/android/graphics/Picture.cpp
@@ -19,7 +19,7 @@
#include "SkCanvas.h"
#include "SkStream.h"
-using namespace android;
+namespace android {
Picture::Picture(const Picture* src) {
if (NULL != src) {
@@ -113,3 +113,5 @@ SkPicture* Picture::makePartialCopy() const {
mRecorder->partialReplay(canvas);
return reRecorder.endRecording();
}
+
+}; // namespace android