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

Side by Side Diff: content/public/browser/speech_recognition_manager.h

Issue 10233010: Introducing new data types and IPC messages for scripted JS speech recognition APIs (Speech CL2.0) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed according to Hans review. Created 8 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_MANAGER_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_MANAGER_H_
6 #define CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_MANAGER_H_ 6 #define CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_MANAGER_H_
7 #pragma once
7 8
8 #include "base/string16.h" 9 #include "base/string16.h"
9 #include "base/callback.h" 10 #include "base/callback.h"
10 #include "content/common/content_export.h" 11 #include "content/common/content_export.h"
11 #include "content/public/common/speech_recognition_result.h" 12 #include "content/public/common/speech_recognition_result.h"
12 13
13 namespace content { 14 namespace content {
14 15
15 class SpeechRecognitionEventListener; 16 class SpeechRecognitionEventListener;
16 struct SpeechRecognitionSessionConfig; 17 struct SpeechRecognitionSessionConfig;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 // via the BrowserThread::FILE thread. 86 // via the BrowserThread::FILE thread.
86 virtual void ShowAudioInputSettings() = 0; 87 virtual void ShowAudioInputSettings() = 0;
87 88
88 protected: 89 protected:
89 virtual ~SpeechRecognitionManager() {} 90 virtual ~SpeechRecognitionManager() {}
90 }; 91 };
91 92
92 } // namespace content 93 } // namespace content
93 94
94 #endif // CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_MANAGER_H_ 95 #endif // CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698