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/platform/WebSpeechSynthesisVoice.h" | 27 #include "public/platform/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 namespace WebKit { | 34 namespace blink { |
35 | 35 |
36 WebSpeechSynthesisVoice::WebSpeechSynthesisVoice() | 36 WebSpeechSynthesisVoice::WebSpeechSynthesisVoice() |
37 : m_private(WebCore::PlatformSpeechSynthesisVoice::create()) | 37 : m_private(WebCore::PlatformSpeechSynthesisVoice::create()) |
38 { | 38 { |
39 } | 39 } |
40 | 40 |
41 void WebSpeechSynthesisVoice::assign(const WebSpeechSynthesisVoice& other) | 41 void WebSpeechSynthesisVoice::assign(const WebSpeechSynthesisVoice& other) |
42 { | 42 { |
43 m_private = other.m_private; | 43 m_private = other.m_private; |
44 } | 44 } |
(...skipping 26 matching lines...) Expand all Loading... |
71 void WebSpeechSynthesisVoice::setIsDefault(bool isDefault) | 71 void WebSpeechSynthesisVoice::setIsDefault(bool isDefault) |
72 { | 72 { |
73 m_private->setIsDefault(isDefault); | 73 m_private->setIsDefault(isDefault); |
74 } | 74 } |
75 | 75 |
76 WebSpeechSynthesisVoice::operator PassRefPtr<WebCore::PlatformSpeechSynthesisVoi
ce>() const | 76 WebSpeechSynthesisVoice::operator PassRefPtr<WebCore::PlatformSpeechSynthesisVoi
ce>() const |
77 { | 77 { |
78 return m_private.get(); | 78 return m_private.get(); |
79 } | 79 } |
80 | 80 |
81 } // namespace WebKit | 81 } // namespace blink |
OLD | NEW |