summaryrefslogtreecommitdiff
path: root/dom
diff options
context:
space:
mode:
authorJeremy Andrews <athenian200@outlook.com>2021-08-24 17:19:47 -0500
committerJeremy Andrews <athenian200@outlook.com>2021-08-24 17:19:47 -0500
commitb818d43967c70428a1ab3dd2b92e55f581711e2b (patch)
tree3b8cf257c8a876ed5db4c5bbb1ff98059d69cb1c /dom
parenta21085b86b6f1dbcd674b1e1672094ebeb726a5b (diff)
downloaduxp-b818d43967c70428a1ab3dd2b92e55f581711e2b.tar.gz
Issue #1806 - Part 7: Fix up weird issue introduced when redoing branch.
Apparently this time I accentally pulled a random + and - sign into a couple files because I wasn't careful to look at the raw versions on Bugzilla.
Diffstat (limited to 'dom')
-rw-r--r--dom/media/AudioDeviceInfo.cpp4
-rw-r--r--dom/media/AudioDeviceInfo.h3
2 files changed, 3 insertions, 4 deletions
diff --git a/dom/media/AudioDeviceInfo.cpp b/dom/media/AudioDeviceInfo.cpp
index af5eda72b1..6f27218737 100644
--- a/dom/media/AudioDeviceInfo.cpp
+++ b/dom/media/AudioDeviceInfo.cpp
@@ -159,8 +159,8 @@ AudioDeviceInfo::GetMaxLatency(uint32_t* aMaxLatency)
/* readonly attribute unsigned long minLatency; */
NS_IMETHODIMP
-+
--AudioDeviceInfo::GetMinLatency(uint32_t* aMinLatency)
+
+AudioDeviceInfo::GetMinLatency(uint32_t* aMinLatency)
{
*aMinLatency = mMinLatency;
return NS_OK;
diff --git a/dom/media/AudioDeviceInfo.h b/dom/media/AudioDeviceInfo.h
index 25b13a137c..15930810de 100644
--- a/dom/media/AudioDeviceInfo.h
+++ b/dom/media/AudioDeviceInfo.h
@@ -25,8 +25,7 @@ public:
uint16_t aDefaultFormat,
uint32_t aMaxChannels,
uint32_t aDefaultRate,
-+
-- uint32_t aMaxRate,
+ uint32_t aMaxRate,
uint32_t aMinRate,
uint32_t aMaxLatency,
uint32_t aMinLatency);