summaryrefslogtreecommitdiff
path: root/platform/android/src/style/layers/custom_layer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/src/style/layers/custom_layer.hpp')
-rw-r--r--platform/android/src/style/layers/custom_layer.hpp11
1 files changed, 4 insertions, 7 deletions
diff --git a/platform/android/src/style/layers/custom_layer.hpp b/platform/android/src/style/layers/custom_layer.hpp
index dc328a2137..3856ea73ae 100644
--- a/platform/android/src/style/layers/custom_layer.hpp
+++ b/platform/android/src/style/layers/custom_layer.hpp
@@ -16,14 +16,11 @@ public:
static void registerNative(jni::JNIEnv&);
CustomLayer(jni::JNIEnv&, const jni::String&, jni::jlong);
- CustomLayer(mbgl::Map&, mbgl::style::CustomLayer&);
- CustomLayer(mbgl::Map&, std::unique_ptr<mbgl::style::CustomLayer>);
+ CustomLayer(mbgl::style::CustomLayer&);
+ CustomLayer(std::unique_ptr<mbgl::style::CustomLayer>);
~CustomLayer();
- void update(jni::JNIEnv&);
-
jni::Local<jni::Object<Layer>> createJavaPeer(jni::JNIEnv&);
-
}; // class CustomLayer
class CustomJavaLayerPeerFactory final : public JavaLayerPeerFactory, public mbgl::CustomLayerFactory {
@@ -31,8 +28,8 @@ public:
~CustomJavaLayerPeerFactory() override;
// JavaLayerPeerFactory overrides.
- jni::Local<jni::Object<Layer>> createJavaLayerPeer(jni::JNIEnv&, mbgl::Map&, mbgl::style::Layer&) final;
- jni::Local<jni::Object<Layer>> createJavaLayerPeer(jni::JNIEnv& env, mbgl::Map& map, std::unique_ptr<mbgl::style::Layer>) final;
+ jni::Local<jni::Object<Layer>> createJavaLayerPeer(jni::JNIEnv&, mbgl::style::Layer&) final;
+ jni::Local<jni::Object<Layer>> createJavaLayerPeer(jni::JNIEnv& env, std::unique_ptr<mbgl::style::Layer>) final;
void registerNative(jni::JNIEnv&) final;