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

Side by Side Diff: content/renderer/renderer_webkitplatformsupport_impl.h

Issue 12589005: Implement web speech synthesis. (Closed) Base URL: http://git.chromium.org/chromium/src.git@webtts
Patch Set: Fix android build 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_
6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ 6 #define CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/platform_file.h" 10 #include "base/platform_file.h"
(...skipping 28 matching lines...) Expand all
39 plugin_refresh_allowed_ = plugin_refresh_allowed; 39 plugin_refresh_allowed_ = plugin_refresh_allowed;
40 } 40 }
41 // Platform methods: 41 // Platform methods:
42 virtual WebKit::WebClipboard* clipboard(); 42 virtual WebKit::WebClipboard* clipboard();
43 virtual WebKit::WebMimeRegistry* mimeRegistry(); 43 virtual WebKit::WebMimeRegistry* mimeRegistry();
44 virtual WebKit::WebFileUtilities* fileUtilities(); 44 virtual WebKit::WebFileUtilities* fileUtilities();
45 virtual WebKit::WebSandboxSupport* sandboxSupport(); 45 virtual WebKit::WebSandboxSupport* sandboxSupport();
46 virtual WebKit::WebCookieJar* cookieJar(); 46 virtual WebKit::WebCookieJar* cookieJar();
47 virtual WebKit::WebHyphenator* hyphenator(); 47 virtual WebKit::WebHyphenator* hyphenator();
48 virtual WebKit::WebThemeEngine* themeEngine(); 48 virtual WebKit::WebThemeEngine* themeEngine();
49 virtual WebKit::WebSpeechSynthesizer* createSpeechSynthesizer(
50 WebKit::WebSpeechSynthesizerClient* client);
49 virtual bool sandboxEnabled(); 51 virtual bool sandboxEnabled();
50 virtual unsigned long long visitedLinkHash( 52 virtual unsigned long long visitedLinkHash(
51 const char* canonicalURL, size_t length); 53 const char* canonicalURL, size_t length);
52 virtual bool isLinkVisited(unsigned long long linkHash); 54 virtual bool isLinkVisited(unsigned long long linkHash);
53 virtual WebKit::WebMessagePortChannel* createMessagePortChannel(); 55 virtual WebKit::WebMessagePortChannel* createMessagePortChannel();
54 virtual void prefetchHostName(const WebKit::WebString&); 56 virtual void prefetchHostName(const WebKit::WebString&);
55 virtual void cacheMetadata( 57 virtual void cacheMetadata(
56 const WebKit::WebURL&, double, const char*, size_t); 58 const WebKit::WebURL&, double, const char*, size_t);
57 virtual WebKit::WebString defaultLocale(); 59 virtual WebKit::WebString defaultLocale();
58 virtual void suddenTerminationChanged(bool enabled); 60 virtual void suddenTerminationChanged(bool enabled);
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 scoped_ptr<GamepadSharedMemoryReader> gamepad_shared_memory_reader_; 166 scoped_ptr<GamepadSharedMemoryReader> gamepad_shared_memory_reader_;
165 167
166 scoped_refptr<ThreadSafeSender> thread_safe_sender_; 168 scoped_refptr<ThreadSafeSender> thread_safe_sender_;
167 169
168 scoped_refptr<cc::ContextProvider> shared_offscreen_context_; 170 scoped_refptr<cc::ContextProvider> shared_offscreen_context_;
169 }; 171 };
170 172
171 } // namespace content 173 } // namespace content
172 174
173 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_ 175 #endif // CONTENT_RENDERER_RENDERER_WEBKITPLATFORMSUPPORT_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/render_thread_impl.cc ('k') | content/renderer/renderer_webkitplatformsupport_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698