| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 blink::WebPluginContainer* container) OVERRIDE; | 131 blink::WebPluginContainer* container) OVERRIDE; |
| 132 virtual const void* CreatePPAPIInterface( | 132 virtual const void* CreatePPAPIInterface( |
| 133 const std::string& interface_name) OVERRIDE; | 133 const std::string& interface_name) OVERRIDE; |
| 134 virtual bool IsExternalPepperPlugin(const std::string& module_name) OVERRIDE; | 134 virtual bool IsExternalPepperPlugin(const std::string& module_name) OVERRIDE; |
| 135 virtual blink::WebSpeechSynthesizer* OverrideSpeechSynthesizer( | 135 virtual blink::WebSpeechSynthesizer* OverrideSpeechSynthesizer( |
| 136 blink::WebSpeechSynthesizerClient* client) OVERRIDE; | 136 blink::WebSpeechSynthesizerClient* client) OVERRIDE; |
| 137 virtual bool ShouldReportDetailedMessageForSource( | 137 virtual bool ShouldReportDetailedMessageForSource( |
| 138 const base::string16& source) const OVERRIDE; | 138 const base::string16& source) const OVERRIDE; |
| 139 virtual bool ShouldEnableSiteIsolationPolicy() const OVERRIDE; | 139 virtual bool ShouldEnableSiteIsolationPolicy() const OVERRIDE; |
| 140 virtual blink::WebWorkerPermissionClientProxy* | 140 virtual blink::WebWorkerPermissionClientProxy* |
| 141 CreateWorkerPermissionClientProxy(content::RenderView* render_view, | 141 CreateWorkerPermissionClientProxy(content::RenderFrame* render_frame, |
| 142 blink::WebFrame* frame) OVERRIDE; | 142 blink::WebFrame* frame) OVERRIDE; |
| 143 virtual bool AllowPepperMediaStreamAPI(const GURL& url) OVERRIDE; | 143 virtual bool AllowPepperMediaStreamAPI(const GURL& url) OVERRIDE; |
| 144 virtual void AddKeySystems( | 144 virtual void AddKeySystems( |
| 145 std::vector<content::KeySystemInfo>* key_systems) OVERRIDE; | 145 std::vector<content::KeySystemInfo>* key_systems) OVERRIDE; |
| 146 | 146 |
| 147 // For testing. | 147 // For testing. |
| 148 void SetExtensionDispatcher(extensions::Dispatcher* extension_dispatcher); | 148 void SetExtensionDispatcher(extensions::Dispatcher* extension_dispatcher); |
| 149 | 149 |
| 150 #if defined(ENABLE_SPELLCHECK) | 150 #if defined(ENABLE_SPELLCHECK) |
| 151 // Sets a new |spellcheck|. Used for low-mem restart and testing only. | 151 // 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... |
| 212 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; | 212 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; |
| 213 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 213 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
| 214 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; | 214 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; |
| 215 #if defined(ENABLE_WEBRTC) | 215 #if defined(ENABLE_WEBRTC) |
| 216 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; | 216 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; |
| 217 #endif | 217 #endif |
| 218 scoped_ptr<SearchBouncer> search_bouncer_; | 218 scoped_ptr<SearchBouncer> search_bouncer_; |
| 219 }; | 219 }; |
| 220 | 220 |
| 221 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 221 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
| OLD | NEW |