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

Side by Side Diff: Source/Platform/chromium/public/WebSpeechSynthesisVoice.h

Issue 14585005: Add a WebSpeechSynthesisVoice constructor to the public API. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
« no previous file with comments | « no previous file | Source/core/platform/chromium/support/WebSpeechSynthesisVoice.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 20 matching lines...) Expand all
31 #include "WebString.h" 31 #include "WebString.h"
32 32
33 namespace WebCore { 33 namespace WebCore {
34 class PlatformSpeechSynthesisVoice; 34 class PlatformSpeechSynthesisVoice;
35 } 35 }
36 36
37 namespace WebKit { 37 namespace WebKit {
38 38
39 class WebSpeechSynthesisVoice { 39 class WebSpeechSynthesisVoice {
40 public: 40 public:
41 WebSpeechSynthesisVoice() { } 41 WEBKIT_EXPORT WebSpeechSynthesisVoice();
42 WebSpeechSynthesisVoice(const WebSpeechSynthesisVoice& other) { assign(other ); } 42 WebSpeechSynthesisVoice(const WebSpeechSynthesisVoice& other) { assign(other ); }
43 ~WebSpeechSynthesisVoice() { reset(); } 43 ~WebSpeechSynthesisVoice() { reset(); }
44 44
45 WebSpeechSynthesisVoice& operator=(const WebSpeechSynthesisVoice& other) 45 WebSpeechSynthesisVoice& operator=(const WebSpeechSynthesisVoice& other)
46 { 46 {
47 assign(other); 47 assign(other);
48 return *this; 48 return *this;
49 } 49 }
50 50
51 WEBKIT_EXPORT void assign(const WebSpeechSynthesisVoice&); 51 WEBKIT_EXPORT void assign(const WebSpeechSynthesisVoice&);
52 WEBKIT_EXPORT void reset(); 52 WEBKIT_EXPORT void reset();
53 53
54 WEBKIT_EXPORT void setVoiceURI(const WebString&); 54 WEBKIT_EXPORT void setVoiceURI(const WebString&);
55 WEBKIT_EXPORT void setName(const WebString&); 55 WEBKIT_EXPORT void setName(const WebString&);
56 WEBKIT_EXPORT void setLanguage(const WebString&); 56 WEBKIT_EXPORT void setLanguage(const WebString&);
57 WEBKIT_EXPORT void setIsLocalService(bool); 57 WEBKIT_EXPORT void setIsLocalService(bool);
58 WEBKIT_EXPORT void setIsDefault(bool); 58 WEBKIT_EXPORT void setIsDefault(bool);
59 59
60 #if WEBKIT_IMPLEMENTATION 60 #if WEBKIT_IMPLEMENTATION
61 operator WTF::PassRefPtr<WebCore::PlatformSpeechSynthesisVoice>() const; 61 operator WTF::PassRefPtr<WebCore::PlatformSpeechSynthesisVoice>() const;
62 #endif 62 #endif
63 63
64 private: 64 private:
65 WebPrivatePtr<WebCore::PlatformSpeechSynthesisVoice> m_private; 65 WebPrivatePtr<WebCore::PlatformSpeechSynthesisVoice> m_private;
66 }; 66 };
67 67
68 } // namespace WebKit 68 } // namespace WebKit
69 69
70 #endif // WebSpeechSynthesisVoice_h 70 #endif // WebSpeechSynthesisVoice_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/platform/chromium/support/WebSpeechSynthesisVoice.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698