#include "media/mojo/mojom/speech_recognition_result.h"
namespace media {
HypothesisParts::HypothesisParts() = default;
HypothesisParts::HypothesisParts(const std::vector<std::string> part,
base::TimeDelta offset)
: … { … }
HypothesisParts::HypothesisParts(const HypothesisParts&) = default;
HypothesisParts::HypothesisParts(HypothesisParts&&) = default;
HypothesisParts& HypothesisParts::operator=(const HypothesisParts&) = default;
HypothesisParts& HypothesisParts::operator=(HypothesisParts&&) = default;
HypothesisParts::~HypothesisParts() = default;
bool HypothesisParts::operator==(const HypothesisParts& rhs) const { … }
TimingInformation::TimingInformation() = default;
TimingInformation::TimingInformation(const TimingInformation&) = default;
TimingInformation::TimingInformation(TimingInformation&&) = default;
TimingInformation& TimingInformation::operator=(const TimingInformation&) =
default;
TimingInformation& TimingInformation::operator=(TimingInformation&&) = default;
TimingInformation::~TimingInformation() = default;
bool TimingInformation::operator==(const TimingInformation& rhs) const { … }
SpeechRecognitionResult::SpeechRecognitionResult() = default;
SpeechRecognitionResult::SpeechRecognitionResult(const std::string transcript,
bool is_final)
: … { … }
SpeechRecognitionResult::SpeechRecognitionResult(
const SpeechRecognitionResult&) = default;
SpeechRecognitionResult::SpeechRecognitionResult(SpeechRecognitionResult&&) =
default;
SpeechRecognitionResult& SpeechRecognitionResult::operator=(
const SpeechRecognitionResult&) = default;
SpeechRecognitionResult& SpeechRecognitionResult::operator=(
SpeechRecognitionResult&&) = default;
SpeechRecognitionResult::~SpeechRecognitionResult() = default;
bool SpeechRecognitionResult::operator==(
const SpeechRecognitionResult& rhs) const { … }
}