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

Commit 4eaebc93 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Move PendingRequestPool and ParcelableUtils."

parents cecd7305 5b320fb7
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ package {
cc_defaults {
    name: "VehicleHalDefaults",
    static_libs: [
        "android-automotive-large-parcelable-vendor-lib",
        "android.hardware.automotive.vehicle-V1-ndk",
        "libmath",
    ],
@@ -35,4 +36,7 @@ cc_defaults {
        "-Werror",
        "-Wthread-safety",
    ],
    defaults: [
        "android-automotive-large-parcelable-defaults",
    ],
}
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ class PendingRequestPool final {
  public:
    using TimeoutCallbackFunc = std::function<void(const std::unordered_set<int64_t>&)>;

    explicit PendingRequestPool(int64_t timeoutInSec);
    explicit PendingRequestPool(int64_t timeoutInNano);

    ~PendingRequestPool();

Loading