OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * * Redistributions of source code must retain the above copyright | 7 * * Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * * Redistributions in binary form must reproduce the above copyright | 9 * * Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 13 matching lines...) Expand all Loading... |
24 */ | 24 */ |
25 | 25 |
26 #include "config.h" | 26 #include "config.h" |
27 #include <public/WebSpeechSynthesisVoice.h> | 27 #include <public/WebSpeechSynthesisVoice.h> |
28 | 28 |
29 #include "modules/speech/SpeechRecognitionAlternative.h" | 29 #include "modules/speech/SpeechRecognitionAlternative.h" |
30 #include "modules/speech/SpeechSynthesisVoice.h" | 30 #include "modules/speech/SpeechSynthesisVoice.h" |
31 #include <wtf/PassRefPtr.h> | 31 #include <wtf/PassRefPtr.h> |
32 #include <wtf/Vector.h> | 32 #include <wtf/Vector.h> |
33 | 33 |
34 #if ENABLE(SPEECH_SYNTHESIS) | |
35 | |
36 namespace WebKit { | 34 namespace WebKit { |
37 | 35 |
38 void WebSpeechSynthesisVoice::assign(const WebSpeechSynthesisVoice& other) | 36 void WebSpeechSynthesisVoice::assign(const WebSpeechSynthesisVoice& other) |
39 { | 37 { |
40 m_private = other.m_private; | 38 m_private = other.m_private; |
41 } | 39 } |
42 | 40 |
43 void WebSpeechSynthesisVoice::reset() | 41 void WebSpeechSynthesisVoice::reset() |
44 { | 42 { |
45 m_private.reset(); | 43 m_private.reset(); |
(...skipping 23 matching lines...) Expand all Loading... |
69 { | 67 { |
70 m_private->setIsDefault(isDefault); | 68 m_private->setIsDefault(isDefault); |
71 } | 69 } |
72 | 70 |
73 WebSpeechSynthesisVoice::operator PassRefPtr<WebCore::PlatformSpeechSynthesisVoi
ce>() const | 71 WebSpeechSynthesisVoice::operator PassRefPtr<WebCore::PlatformSpeechSynthesisVoi
ce>() const |
74 { | 72 { |
75 return m_private.get(); | 73 return m_private.get(); |
76 } | 74 } |
77 | 75 |
78 } // namespace WebKit | 76 } // namespace WebKit |
79 | |
80 #endif // ENABLE(SPEECH_SYNTHESIS) | |
OLD | NEW |