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

Unified Diff: content/public/browser/speech_recognizer.h

Issue 9972008: Refactoring of chrome speech recognition architecture (CL1.6) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased from master (incl. leak patch) Created 8 years, 8 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/public/browser/speech_recognizer.h
diff --git a/content/public/browser/speech_recognizer.h b/content/public/browser/speech_recognizer.h
index 4e64e101b8111137efea7944d45cbcc1c96e6357..330048e2bf8db8f5ac8d0900781d2cde491599aa 100644
--- a/content/public/browser/speech_recognizer.h
+++ b/content/public/browser/speech_recognizer.h
@@ -25,13 +25,9 @@ class SpeechRecognitionEventListener;
class SpeechRecognizer : public base::RefCountedThreadSafe<SpeechRecognizer> {
public:
- // TODO(primiano) Create(...) is transitional (until we fix speech input
jam 2012/04/17 04:35:42 why take this comment out, are you not planning on
- // extensions) and should be removed soon. The manager should be the only one
- // knowing the existence of SpeechRecognizer, thus the only one in charge of
- // instantiating it.
CONTENT_EXPORT static SpeechRecognizer* Create(
SpeechRecognitionEventListener* event_listener,
- int caller_id,
+ int session_id,
const std::string& language,
const std::string& grammar,
net::URLRequestContextGetter* context_getter,

Powered by Google App Engine
This is Rietveld 408576698