diff options
author | 2018-08-28 13:55:11 -0700 | |
---|---|---|
committer | 2018-08-28 13:55:11 -0700 | |
commit | edc39e36e980247e3f7ed02a0c570b5ddafb5a2c (patch) | |
tree | 5a5d90a0bbb46625343a37ac5047d401904beda7 /libs/graphicsenv/GraphicsEnv.cpp | |
parent | f43073af5bb559ba3481689793b997cc3b009049 (diff) | |
parent | a78bdeb2288cde6c9bef48ef83675ffdd8f14e55 (diff) |
Merge "Add fallback case to layers_extensions.cpp" am: c3260262ae
am: a78bdeb228
Change-Id: I5565286bb7de790aa595e007ef186d81ddfe7ea3
Diffstat (limited to 'libs/graphicsenv/GraphicsEnv.cpp')
-rw-r--r-- | libs/graphicsenv/GraphicsEnv.cpp | 4 |
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; } |