Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(673)

Unified Diff: content/browser/speech/speech_input_manager.h

Issue 7086005: Context menu for "Voice recognition options" (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Reverted changes in render_view_host and implemented instead in render_view_context_menu Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/speech/speech_input_manager.h
diff --git a/content/browser/speech/speech_input_manager.h b/content/browser/speech/speech_input_manager.h
index 342f2c139d7dc97ddfca349211ca97841f4d74ea..633a9ad1c79c81a077c5a047507479f79fbcc291 100644
--- a/content/browser/speech/speech_input_manager.h
+++ b/content/browser/speech/speech_input_manager.h
@@ -64,6 +64,12 @@ class SpeechInputManager {
virtual void StopRecording(int caller_id) = 0;
virtual void CancelAllRequestsWithDelegate(Delegate* delegate) = 0;
+
+ void set_censor_results(bool censor) { censor_results_ = censor; }
+
+ bool censor_results() { return censor_results_; }
+ private:
+ bool censor_results_;
Satish 2011/07/20 15:23:13 Sorry I didn't notice this earlier. This class is
gshires 2011/07/20 17:16:10 Done.
};
// This typedef is to workaround the issue with certain versions of

Powered by Google App Engine
This is Rietveld 408576698