Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e39fdec1 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 7219286 from 5ce44f92 to sc-release

Change-Id: I23ef679f361b74eb933134326e10d62fa0468c4e
parents 8584ae37 5ce44f92
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -678,7 +678,7 @@ enum {
    /**
     * Axis constant: The movement of y position of a motion event.
     *
     * Same as {@link RELATIVE_X}, but for y position.
     * Same as {@link AMOTION_EVENT_AXIS_RELATIVE_X}, but for y position.
     */
    AMOTION_EVENT_AXIS_RELATIVE_Y = 28,
    /**
+2 −0
Original line number Diff line number Diff line
@@ -467,3 +467,5 @@ void ASurfaceTransaction_setFrameRateWithSeamlessness(ASurfaceTransaction* trans
__END_DECLS

#endif // ANDROID_SURFACE_CONTROL_H

/** @} */
+2 −0
Original line number Diff line number Diff line
@@ -176,3 +176,5 @@ int64_t ASurfaceTexture_getTimestamp(ASurfaceTexture* st) __INTRODUCED_IN(28);
__END_DECLS

#endif /* ANDROID_NATIVE_SURFACE_TEXTURE_H */

/** @} */
+2 −0
Original line number Diff line number Diff line
@@ -53,3 +53,5 @@ ASurfaceTexture* ASurfaceTexture_fromSurfaceTexture(JNIEnv* env, jobject surface
__END_DECLS

#endif /* ANDROID_NATIVE_SURFACE_TEXTURE_JNI_H */

/** @} */
+3 −0
Original line number Diff line number Diff line
@@ -82,7 +82,10 @@ class SharedRefBase {
     */
    template <class T, class... Args>
    static std::shared_ptr<T> make(Args&&... args) {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
        T* t = new T(std::forward<Args>(args)...);
#pragma clang diagnostic pop
        // warning: Potential leak of memory pointed to by 't' [clang-analyzer-unix.Malloc]
        return t->template ref<T>();  // NOLINT(clang-analyzer-unix.Malloc)
    }
Loading