blob: a053ace47f2b4be68fa9ddc120ead95c5f3656e5 [file] [log] [blame]
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/speech/speech_recognizer.h"
#include "content/public/browser/speech_recognition_event_listener.h"
namespace content {
SpeechRecognizer::SpeechRecognizer(SpeechRecognitionEventListener* listener,
int session_id)
: listener_(listener), session_id_(session_id) {
DCHECK(listener_);
}
} // namespace content