OLD | NEW |
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 CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 5 #ifndef CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 blink::WebPluginContainer* container) OVERRIDE; | 122 blink::WebPluginContainer* container) OVERRIDE; |
123 virtual const void* CreatePPAPIInterface( | 123 virtual const void* CreatePPAPIInterface( |
124 const std::string& interface_name) OVERRIDE; | 124 const std::string& interface_name) OVERRIDE; |
125 virtual bool IsExternalPepperPlugin(const std::string& module_name) OVERRIDE; | 125 virtual bool IsExternalPepperPlugin(const std::string& module_name) OVERRIDE; |
126 virtual blink::WebSpeechSynthesizer* OverrideSpeechSynthesizer( | 126 virtual blink::WebSpeechSynthesizer* OverrideSpeechSynthesizer( |
127 blink::WebSpeechSynthesizerClient* client) OVERRIDE; | 127 blink::WebSpeechSynthesizerClient* client) OVERRIDE; |
128 virtual bool ShouldReportDetailedMessageForSource( | 128 virtual bool ShouldReportDetailedMessageForSource( |
129 const base::string16& source) const OVERRIDE; | 129 const base::string16& source) const OVERRIDE; |
130 virtual bool ShouldEnableSiteIsolationPolicy() const OVERRIDE; | 130 virtual bool ShouldEnableSiteIsolationPolicy() const OVERRIDE; |
131 virtual blink::WebWorkerPermissionClientProxy* | 131 virtual blink::WebWorkerPermissionClientProxy* |
132 CreateWorkerPermissionClientProxy(content::RenderView* render_view, | 132 CreateWorkerPermissionClientProxy(content::RenderFrame* render_frame, |
133 blink::WebFrame* frame) OVERRIDE; | 133 blink::WebFrame* frame) OVERRIDE; |
134 virtual bool AllowPepperMediaStreamAPI(const GURL& url) OVERRIDE; | 134 virtual bool AllowPepperMediaStreamAPI(const GURL& url) OVERRIDE; |
135 virtual void AddKeySystems( | 135 virtual void AddKeySystems( |
136 std::vector<content::KeySystemInfo>* key_systems) OVERRIDE; | 136 std::vector<content::KeySystemInfo>* key_systems) OVERRIDE; |
137 | 137 |
138 // For testing. | 138 // For testing. |
139 void SetExtensionDispatcher(extensions::Dispatcher* extension_dispatcher); | 139 void SetExtensionDispatcher(extensions::Dispatcher* extension_dispatcher); |
140 | 140 |
141 #if defined(ENABLE_SPELLCHECK) | 141 #if defined(ENABLE_SPELLCHECK) |
142 // Sets a new |spellcheck|. Used for low-mem restart and testing only. | 142 // Sets a new |spellcheck|. Used for low-mem restart and testing only. |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; | 203 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; |
204 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 204 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
205 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; | 205 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; |
206 #if defined(ENABLE_WEBRTC) | 206 #if defined(ENABLE_WEBRTC) |
207 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; | 207 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; |
208 #endif | 208 #endif |
209 scoped_ptr<SearchBouncer> search_bouncer_; | 209 scoped_ptr<SearchBouncer> search_bouncer_; |
210 }; | 210 }; |
211 | 211 |
212 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 212 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
OLD | NEW |