| Index: chrome/browser/speech/chrome_speech_recognition_preferences.h
|
| diff --git a/chrome/browser/speech/chrome_speech_recognition_preferences.h b/chrome/browser/speech/chrome_speech_recognition_preferences.h
|
| index 478c01719cb1bd0bb481c0a7ae34af8df6cd3a19..44950e29d87462c866c9aa785a7cef60736105d9 100644
|
| --- a/chrome/browser/speech/chrome_speech_recognition_preferences.h
|
| +++ b/chrome/browser/speech/chrome_speech_recognition_preferences.h
|
| @@ -10,7 +10,6 @@
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/singleton.h"
|
| -#include "base/string16.h"
|
| #include "base/synchronization/lock.h"
|
| #include "base/threading/non_thread_safe.h"
|
| #include "chrome/browser/prefs/pref_change_registrar.h"
|
| @@ -55,8 +54,8 @@ class ChromeSpeechRecognitionPreferences
|
| // Called only by Chrome (on UI thread).
|
| void SetFilterProfanities(bool filter_profanities);
|
| void ToggleFilterProfanities();
|
| - bool ShouldShowSecurityNotification(const string16& context_name) const;
|
| - void SetHasShownSecurityNotification(const string16& context_name);
|
| + bool ShouldShowSecurityNotification(const std::string& context_name) const;
|
| + void SetHasShownSecurityNotification(const std::string& context_name);
|
|
|
| private:
|
| // The two classes below are needed to handle storage of speech recognition
|
|
|