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

Commit e377cdc1 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Suppress warning on the use of deprecated APIs" am: 6adc1b3a am:...

Merge "Suppress warning on the use of deprecated APIs" am: 6adc1b3a am: 22e1864e am: 0c1aaf22 am: b7e6bb14

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1425363

Change-Id: Ib1d250eac2b0660cddebe7c924bb6226a4760c51
parents 0c7ef058 b7e6bb14
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -443,12 +443,18 @@ AChoreographer* AChoreographer_routeGetInstance() {
}
void AChoreographer_routePostFrameCallback(AChoreographer* choreographer,
                                           AChoreographer_frameCallback callback, void* data) {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
    return AChoreographer_postFrameCallback(choreographer, callback, data);
#pragma clang diagnostic pop
}
void AChoreographer_routePostFrameCallbackDelayed(AChoreographer* choreographer,
                                                  AChoreographer_frameCallback callback, void* data,
                                                  long delayMillis) {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
    return AChoreographer_postFrameCallbackDelayed(choreographer, callback, data, delayMillis);
#pragma clang diagnostic pop
}
void AChoreographer_routePostFrameCallback64(AChoreographer* choreographer,
                                             AChoreographer_frameCallback64 callback, void* data) {