summaryrefslogtreecommitdiff
path: root/libs/graphicsenv/GraphicsEnv.cpp
diff options
context:
space:
mode:
author Victor Khimenko <khim@google.com> 2018-08-28 13:46:06 -0700
committer android-build-merger <android-build-merger@google.com> 2018-08-28 13:46:06 -0700
commita78bdeb2288cde6c9bef48ef83675ffdd8f14e55 (patch)
treecfc9930935b126c01082788d14e0b05bd6ed51b0 /libs/graphicsenv/GraphicsEnv.cpp
parent55796504b1731efdbc7ca3079f44701522229113 (diff)
parentc3260262aecaf27f7b9e11c3b97a78263e9cb30a (diff)
Merge "Add fallback case to layers_extensions.cpp"
am: c3260262ae Change-Id: I426fbb3a8d2fb5d1f82e5bccb188b1e0abccdcf7
Diffstat (limited to 'libs/graphicsenv/GraphicsEnv.cpp')
-rw-r--r--libs/graphicsenv/GraphicsEnv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/graphicsenv/GraphicsEnv.cpp b/libs/graphicsenv/GraphicsEnv.cpp
index 961f1011e0..a8ef7a051d 100644
--- a/libs/graphicsenv/GraphicsEnv.cpp
+++ b/libs/graphicsenv/GraphicsEnv.cpp
@@ -56,7 +56,7 @@ void GraphicsEnv::setDriverPath(const std::string path) {
mDriverPath = path;
}
-void GraphicsEnv::setLayerPaths(android_namespace_t* appNamespace, const std::string layerPaths) {
+void GraphicsEnv::setLayerPaths(NativeLoaderNamespace* appNamespace, const std::string layerPaths) {
if (mLayerPaths.empty()) {
mLayerPaths = layerPaths;
mAppNamespace = appNamespace;
@@ -66,7 +66,7 @@ void GraphicsEnv::setLayerPaths(android_namespace_t* appNamespace, const std::st
}
}
-android_namespace_t* GraphicsEnv::getAppNamespace() {
+NativeLoaderNamespace* GraphicsEnv::getAppNamespace() {
return mAppNamespace;
}