| Index: content/browser/speech/speech_recognition_engine.h
|
| diff --git a/content/browser/speech/speech_recognition_engine.h b/content/browser/speech/speech_recognition_engine.h
|
| index 239cabf1b0ad2644362e1ca071f18a917ed9d627..c25fd19c359c6f9f91bb67e15097d8923315bded 100644
|
| --- a/content/browser/speech/speech_recognition_engine.h
|
| +++ b/content/browser/speech/speech_recognition_engine.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef CONTENT_BROWSER_SPEECH_SPEECH_RECOGNITION_ENGINE_H_
|
| #define CONTENT_BROWSER_SPEECH_SPEECH_RECOGNITION_ENGINE_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| #include "content/common/content_export.h"
|
| #include "content/public/browser/speech_recognition_session_preamble.h"
|
| #include "content/public/common/speech_recognition_grammar.h"
|
| @@ -56,7 +57,7 @@ class SpeechRecognitionEngine {
|
| bool filter_profanities;
|
| bool continuous;
|
| bool interim_results;
|
| - uint32 max_hypotheses;
|
| + uint32_t max_hypotheses;
|
| std::string hardware_info;
|
| std::string origin_url;
|
| int audio_sample_rate;
|
|
|