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

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

Merge "Remove Unused Member from Default Impl"

parents 21db4226 93b24545
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -131,7 +131,6 @@ Return<Result> Dvr::stop() {

    lock_guard<mutex> lock(mDvrThreadLock);

    mIsRecordStarted = false;
    mDemux->setIsRecording(false);

    return Result::SUCCESS;
+1 −5
Original line number Diff line number Diff line
@@ -155,10 +155,6 @@ class Dvr : public IDvr {
    std::mutex mDvrThreadLock;

    const bool DEBUG_DVR = false;

    // Booleans to check if recording is running.
    // Recording is ready when both of the following are set to true.
    bool mIsRecordStarted = false;
};

}  // namespace implementation
+0 −1
Original line number Diff line number Diff line
@@ -152,7 +152,6 @@ Return<Result> Dvr::stop() {
    mDvrThreadRunning = false;
    lock_guard<mutex> lock(mDvrThreadLock);

    mIsRecordStarted = false;
    mDemux->setIsRecording(false);

    return Result::SUCCESS;
+1 −5
Original line number Diff line number Diff line
@@ -151,10 +151,6 @@ class Dvr : public IDvr {
    std::mutex mDvrThreadLock;

    const bool DEBUG_DVR = false;

    // Booleans to check if recording is running.
    // Recording is ready when both of the following are set to true.
    bool mIsRecordStarted = false;
};

}  // namespace implementation