tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 442846727eb909ba37fd1b83e6b39abbc6662dac
parent 032a210793e3e217eea63b389f4918fc486f93b4
Author: Karl Tomlinson <karlt+@karlt.net>
Date:   Tue,  7 Oct 2025 20:25:46 +0000

Bug 1992922 Remove unused mLastTimeStamp r=padenot

from https://hg-edge.mozilla.org/mozilla-central/rev/bf9daaf1ef28cd833eab11b2f3fd3427286a1e1b#l1.55

Differential Revision: https://phabricator.services.mozilla.com/D267732

Diffstat:
Mdom/media/GraphDriver.cpp | 3+--
Mdom/media/GraphDriver.h | 1-
2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/dom/media/GraphDriver.cpp b/dom/media/GraphDriver.cpp @@ -180,8 +180,7 @@ SystemClockDriver::SystemClockDriver(GraphInterface* aGraphInterface, uint32_t aSampleRate) : ThreadedDriver(aGraphInterface, aPreviousDriver, aSampleRate), mInitialTimeStamp(TimeStamp::Now()), - mCurrentTimeStamp(TimeStamp::Now()), - mLastTimeStamp(TimeStamp::Now()) {} + mCurrentTimeStamp(TimeStamp::Now()) {} SystemClockDriver::~SystemClockDriver() = default; diff --git a/dom/media/GraphDriver.h b/dom/media/GraphDriver.h @@ -493,7 +493,6 @@ class SystemClockDriver : public ThreadedDriver { // graph thread does not run during the initialization. TimeStamp mInitialTimeStamp; TimeStamp mCurrentTimeStamp; - TimeStamp mLastTimeStamp; }; /**