blob: a651bca79efc064fc884df0af9bb03fa8a03da15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_TTS_API_H_
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_TTS_API_H_
#include <string>
#include "chrome/browser/extensions/extension_function.h"
#include "chrome/browser/extensions/extension_tts_api_controller.h"
class ExtensionTtsSpeakFunction
: public AsyncExtensionFunction {
private:
virtual ~ExtensionTtsSpeakFunction() {}
virtual bool RunImpl() OVERRIDE;
DECLARE_EXTENSION_FUNCTION_NAME("tts.speak")
};
class ExtensionTtsStopSpeakingFunction : public SyncExtensionFunction {
private:
virtual ~ExtensionTtsStopSpeakingFunction() {}
virtual bool RunImpl() OVERRIDE;
DECLARE_EXTENSION_FUNCTION_NAME("tts.stop")
};
class ExtensionTtsIsSpeakingFunction : public SyncExtensionFunction {
private:
virtual ~ExtensionTtsIsSpeakingFunction() {}
virtual bool RunImpl() OVERRIDE;
DECLARE_EXTENSION_FUNCTION_NAME("tts.isSpeaking")
};
class ExtensionTtsGetVoicesFunction : public SyncExtensionFunction {
private:
virtual ~ExtensionTtsGetVoicesFunction() {}
virtual bool RunImpl() OVERRIDE;
DECLARE_EXTENSION_FUNCTION_NAME("tts.getVoices")
};
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TTS_API_H_
|