Bug 1768189 - Part 20: Apply modernize-concat-nested-namespaces to dom/media/systemservices/CamerasParent.h ... r=andi

Depends on D145753

Differential Revision: https://phabricator.services.mozilla.com/D145754
This commit is contained in:
Kagami Sascha Rosylight 2022-05-09 20:41:10 +00:00
Родитель 7795dbcc68
Коммит 4283c3f1dc
25 изменённых файлов: 50 добавлений и 105 удалений

Просмотреть файл

@ -21,9 +21,7 @@
#include "base/thread.h"
namespace mozilla {
namespace camera {
namespace mozilla::camera {
class CamerasParent;
@ -175,7 +173,6 @@ class CamerasParent final : public PCamerasParent,
PCamerasParent* CreateCamerasParent();
} // namespace camera
} // namespace mozilla
} // namespace mozilla::camera
#endif // mozilla_CameraParent_h

Просмотреть файл

@ -11,8 +11,7 @@
#include "mozilla/media/PMediaParent.h"
namespace mozilla {
namespace media {
namespace mozilla::media {
// media::Parent implements the chrome-process side of ipc for media::Child APIs
// A same-process version may also be created to service non-e10s calls.
@ -87,7 +86,6 @@ inline mozilla::ipc::IPCResult IPCResult(Parent<NonE10s>* aSelf,
PMediaParent* AllocPMediaParent();
bool DeallocPMediaParent(PMediaParent* aActor);
} // namespace media
} // namespace mozilla
} // namespace mozilla::media
#endif // mozilla_MediaParent_h

Просмотреть файл

@ -11,8 +11,7 @@
# include "MediaSystemResourceTypes.h"
# include "mozilla/media/PMediaSystemResourceManagerParent.h"
namespace mozilla {
namespace media {
namespace mozilla::media {
/**
* Handle MediaSystemResourceManager's IPC
@ -55,7 +54,6 @@ class MediaSystemResourceManagerParent final
mResourceRequests;
};
} // namespace media
} // namespace mozilla
} // namespace mozilla::media
#endif

Просмотреть файл

@ -26,8 +26,7 @@
class nsIEventTarget;
namespace mozilla {
namespace media {
namespace mozilla::media {
/* media::NewRunnableFrom() - Create a Runnable from a lambda.
*
@ -322,8 +321,6 @@ AwaitAll(already_AddRefed<nsIEventTarget> aPool,
return Await(pool.forget(), p);
}
} // namespace media
} // namespace mozilla
} // namespace mozilla::media
#endif // mozilla_MediaUtils_h

Просмотреть файл

@ -16,8 +16,7 @@
#include <memory>
#include <functional>
namespace mozilla {
namespace camera {
namespace mozilla::camera {
// Historically the video engine was part of webrtc
// it was removed (and reimplemented in Talk)
@ -90,6 +89,5 @@ class VideoEngine {
webrtc::Timestamp mExpiryTime = webrtc::Timestamp::Micros(0);
int32_t GenerateId();
};
} // namespace camera
} // namespace mozilla
} // namespace mozilla::camera
#endif

Просмотреть файл

@ -14,8 +14,7 @@
#include "nsISupportsImpl.h"
#include "nsTString.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class HTMLMediaElement;
@ -186,7 +185,6 @@ class nsTimeupdateRunner : public nsMediaEventRunner {
bool mIsMandatory;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // mozilla_media_mediaelementeventrunners_h

Просмотреть файл

@ -11,8 +11,7 @@
#include "FFTBlock.h"
#include "AlignedTArray.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioContext;
struct AnalyserOptions;
@ -78,7 +77,6 @@ class AnalyserNode final : public AudioNode {
AlignedTArray<float> mOutputBuffer;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -10,8 +10,7 @@
#include "AudioScheduledSourceNode.h"
#include "AudioBuffer.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
struct AudioBufferSourceOptions;
class AudioParam;
@ -125,7 +124,6 @@ class AudioBufferSourceNode final : public AudioScheduledSourceNode,
bool mBufferSet;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -12,8 +12,7 @@
#include "AudioChannelAgent.h"
#include "mozilla/TimeStamp.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioContext;
class WakeLock;
@ -129,7 +128,6 @@ class AudioDestinationNode final : public AudioNode,
TimeDuration mDurationBeforeFirstTimeAudible;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -17,9 +17,7 @@
#include "js/TypeDecls.h"
#include "mozilla/MemoryReporting.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioListenerEngine final {
public:
@ -82,7 +80,6 @@ class AudioListener final : public nsWrapperCache {
ThreeDPoint mRightVector;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -15,9 +15,7 @@
#include "WebAudioUtils.h"
#include "js/TypeDecls.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioParam final : public nsWrapperCache, public AudioParamTimeline {
virtual ~AudioParam();
@ -242,7 +240,6 @@ class AudioParam final : public nsWrapperCache, public AudioParamTimeline {
const float mMaxValue;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -10,15 +10,13 @@
#include "mozilla/dom/AudioParamDescriptorBinding.h"
#include "nsTArray.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
// Note: we call this "map" to match the spec, but we store audio param
// descriptors in an array, because we need ordered access, and don't need the
// map functionalities.
typedef nsTArray<AudioParamDescriptor> AudioParamDescriptorMap;
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // mozilla_dom_AudioParamDescriptor_h

Просмотреть файл

@ -10,8 +10,7 @@
#include "nsWrapperCache.h"
#include "AudioWorkletNode.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioParamMap final : public nsWrapperCache {
public:
@ -30,7 +29,6 @@ class AudioParamMap final : public nsWrapperCache {
RefPtr<AudioWorkletNode> mParent;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // AudioParamMap_h_

Просмотреть файл

@ -11,9 +11,7 @@
#include "AudioNodeTrack.h"
#include "AudioSegment.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
// This helper class is used to represent the part of the AudioParam
// class that gets sent to AudioNodeEngine instances. In addition to
@ -137,7 +135,6 @@ inline void AudioParamTimeline::GetValuesAtTime(int64_t aTime, float* aBuffer,
}
}
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -11,8 +11,7 @@
#include "ScriptProcessorNode.h"
#include "mozilla/dom/Event.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioProcessingEvent final : public Event {
public:
@ -67,7 +66,6 @@ class AudioProcessingEvent final : public Event {
uint32_t mNumberOfInputChannels;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -10,8 +10,7 @@
#include "AudioNode.h"
#include "mozilla/dom/AudioScheduledSourceNodeBinding.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioContext;
@ -29,7 +28,6 @@ class AudioScheduledSourceNode : public AudioNode {
virtual ~AudioScheduledSourceNode() = default;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -9,8 +9,7 @@
#include "AudioNode.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioParamMap;
struct AudioWorkletNodeOptions;
@ -64,7 +63,6 @@ class AudioWorkletNode : public AudioNode {
uint16_t mOutputCount;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif // AudioWorkletNode_h_

Просмотреть файл

@ -11,8 +11,7 @@
#include "AudioParam.h"
#include "mozilla/dom/BiquadFilterNodeBinding.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioContext;
struct BiquadFilterOptions;
@ -67,7 +66,6 @@ class BiquadFilterNode final : public AudioNode {
RefPtr<AudioParam> mGain;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -9,8 +9,7 @@
#include "AudioNode.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioContext;
struct ChannelMergerOptions;
@ -63,7 +62,6 @@ class ChannelMergerNode final : public AudioNode {
const uint16_t mInputCount;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -9,8 +9,7 @@
#include "AudioNode.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioContext;
struct ChannelSplitterOptions;
@ -68,7 +67,6 @@ class ChannelSplitterNode final : public AudioNode {
const uint16_t mOutputCount;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -11,8 +11,7 @@
#include "AudioParam.h"
#include "mozilla/dom/ConstantSourceNodeBinding.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioContext;
@ -56,7 +55,6 @@ class ConstantSourceNode final : public AudioScheduledSourceNode,
bool mStartCalled;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -11,8 +11,7 @@
#include "AudioBuffer.h"
#include "nsPrintfCString.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioContext;
struct ConvolverOptions;
@ -73,7 +72,6 @@ class ConvolverNode final : public AudioNode {
bool mNormalize;
};
} // end namespace dom
} // end namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -10,8 +10,7 @@
#include "AudioNode.h"
#include "AudioParam.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioContext;
struct DelayOptions;
@ -51,7 +50,6 @@ class DelayNode final : public AudioNode {
RefPtr<AudioParam> mDelay;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -10,8 +10,7 @@
#include "AudioNode.h"
#include "AudioParam.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioContext;
struct DynamicsCompressorOptions;
@ -87,7 +86,6 @@ class DynamicsCompressorNode final : public AudioNode {
RefPtr<AudioParam> mRelease;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif

Просмотреть файл

@ -10,8 +10,7 @@
#include "AudioNode.h"
#include "AudioParam.h"
namespace mozilla {
namespace dom {
namespace mozilla::dom {
class AudioContext;
struct GainOptions;
@ -49,7 +48,6 @@ class GainNode final : public AudioNode {
RefPtr<AudioParam> mGain;
};
} // namespace dom
} // namespace mozilla
} // namespace mozilla::dom
#endif