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

Side by Side Diff: Source/core/platform/chromium/support/WebSpeechSynthesisVoice.cpp

Issue 14466008: Switch speech synthesis from compile-flag to runtime-flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase, switch to RuntimeEnabledFeatures.in Created 7 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
OLDNEW
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
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
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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698