Chromium Code Reviews| Index: content/public/browser/speech_recognition_session_context.h |
| diff --git a/content/public/browser/speech_recognition_session_context.h b/content/public/browser/speech_recognition_session_context.h |
| index 4b6d9f7bd730adb1a392360999a0727771ffa5d7..48ec74f352d6b7da1dcf00ca5b740d6f83a67c6b 100644 |
| --- a/content/public/browser/speech_recognition_session_context.h |
| +++ b/content/public/browser/speech_recognition_session_context.h |
| @@ -6,7 +6,7 @@ |
| #define CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_SESSION_CONTEXT_H_ |
| #pragma once |
| -#include "base/string16.h" |
| +#include "base/basictypes.h" |
|
Avi (use Gerrit)
2012/06/14 14:35:39
What do you use from this? If you need std::string
Primiano Tucci (use gerrit)
2012/06/14 14:52:01
Done.
|
| #include "content/common/content_export.h" |
| #include "ui/gfx/rect.h" |
| @@ -35,16 +35,9 @@ struct CONTENT_EXPORT SpeechRecognitionSessionContext { |
| // |requested_by_page_element| = true). |
| gfx::Rect element_rect; |
| - // Determines whether this is the first time that this context (identified by |
| - // |context_name|) is requesting a recognition. |
| - // TODO(primiano) This is really temporary, remove after CL1.12 which will |
| - // refactor SpeechRecognitionPreferences and move this check entirely whithin |
| - // chrome, without involving content. |
| - bool is_first_request_for_context; |
| - |
| // A texual description of the context (website, extension name) that is |
| // requesting recognition, for prompting security notifications to the user. |
| - string16 context_name; |
| + std::string context_name; |
| }; |
| } // namespace content |