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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 const base::FilePath& plugin_path) OVERRIDE; | 80 const base::FilePath& plugin_path) OVERRIDE; |
81 virtual bool HasErrorPage(int http_status_code, | 81 virtual bool HasErrorPage(int http_status_code, |
82 std::string* error_domain) OVERRIDE; | 82 std::string* error_domain) OVERRIDE; |
83 virtual bool ShouldSuppressErrorPage(const GURL& url) OVERRIDE; | 83 virtual bool ShouldSuppressErrorPage(const GURL& url) OVERRIDE; |
84 virtual void GetNavigationErrorStrings( | 84 virtual void GetNavigationErrorStrings( |
85 blink::WebFrame* frame, | 85 blink::WebFrame* frame, |
86 const blink::WebURLRequest& failed_request, | 86 const blink::WebURLRequest& failed_request, |
87 const blink::WebURLError& error, | 87 const blink::WebURLError& error, |
88 const std::string& accept_languages, | 88 const std::string& accept_languages, |
89 std::string* error_html, | 89 std::string* error_html, |
90 string16* error_description) OVERRIDE; | 90 base::string16* error_description) OVERRIDE; |
91 virtual void DeferMediaLoad(content::RenderView* render_view, | 91 virtual void DeferMediaLoad(content::RenderView* render_view, |
92 const base::Closure& closure) OVERRIDE; | 92 const base::Closure& closure) OVERRIDE; |
93 virtual bool RunIdleHandlerWhenWidgetsHidden() OVERRIDE; | 93 virtual bool RunIdleHandlerWhenWidgetsHidden() OVERRIDE; |
94 virtual bool AllowPopup() OVERRIDE; | 94 virtual bool AllowPopup() OVERRIDE; |
95 virtual bool ShouldFork(blink::WebFrame* frame, | 95 virtual bool ShouldFork(blink::WebFrame* frame, |
96 const GURL& url, | 96 const GURL& url, |
97 const std::string& http_method, | 97 const std::string& http_method, |
98 bool is_initial_navigation, | 98 bool is_initial_navigation, |
99 bool is_server_redirect, | 99 bool is_server_redirect, |
100 bool* send_referrer) OVERRIDE; | 100 bool* send_referrer) OVERRIDE; |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; | 211 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; |
212 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; | 212 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; |
213 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; | 213 scoped_ptr<prerender::PrerenderDispatcher> prerender_dispatcher_; |
214 #if defined(ENABLE_WEBRTC) | 214 #if defined(ENABLE_WEBRTC) |
215 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; | 215 scoped_refptr<WebRtcLoggingMessageFilter> webrtc_logging_message_filter_; |
216 #endif | 216 #endif |
217 scoped_ptr<SearchBouncer> search_bouncer_; | 217 scoped_ptr<SearchBouncer> search_bouncer_; |
218 }; | 218 }; |
219 | 219 |
220 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ | 220 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ |
OLD | NEW |