| Index: chrome/browser/speech/chrome_speech_recognition_preferences.cc
|
| diff --git a/chrome/browser/speech/chrome_speech_recognition_preferences.cc b/chrome/browser/speech/chrome_speech_recognition_preferences.cc
|
| index 8faf8619fd375c83d99a9bf9b5c506f9d461a6dc..388cb2df0cbfdf0753f59558ad2d63767ae3a84d 100644
|
| --- a/chrome/browser/speech/chrome_speech_recognition_preferences.cc
|
| +++ b/chrome/browser/speech/chrome_speech_recognition_preferences.cc
|
| @@ -160,7 +160,7 @@ void ChromeSpeechRecognitionPreferences::ToggleFilterProfanities() {
|
| }
|
|
|
| bool ChromeSpeechRecognitionPreferences::ShouldShowSecurityNotification(
|
| - const string16& context_name) const {
|
| + const std::string& context_name) const {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| DCHECK(notifications_shown_.get());
|
| scoped_ptr<base::StringValue> match_name(
|
| @@ -169,7 +169,7 @@ bool ChromeSpeechRecognitionPreferences::ShouldShowSecurityNotification(
|
| }
|
|
|
| void ChromeSpeechRecognitionPreferences::SetHasShownSecurityNotification(
|
| - const string16& context_name) {
|
| + const std::string& context_name) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| DCHECK(notifications_shown_.get());
|
| notifications_shown_->AppendIfNotPresent(
|
|
|