#ifndef CHROME_BROWSER_SPEECH_ON_DEVICE_SPEECH_RECOGNITION_IMPL_H_
#define CHROME_BROWSER_SPEECH_ON_DEVICE_SPEECH_RECOGNITION_IMPL_H_
#include <string>
#include "content/public/browser/document_user_data.h"
#include "media/mojo/mojom/speech_recognizer.mojom.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
class PrefService;
namespace content {
class RenderFrameHost;
}
namespace language {
class LanguagePrefs;
}
namespace speech {
class OnDeviceSpeechRecognitionImpl
: public content::DocumentUserData<OnDeviceSpeechRecognitionImpl>,
public media::mojom::OnDeviceSpeechRecognition { … };
}
#endif