| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 6 #define CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 const GURL& request_url, | 140 const GURL& request_url, |
| 141 content::ResourceType resource_type, | 141 content::ResourceType resource_type, |
| 142 bool overridable, | 142 bool overridable, |
| 143 bool strict_enforcement, | 143 bool strict_enforcement, |
| 144 bool expired_previous_decision, | 144 bool expired_previous_decision, |
| 145 const base::Callback<void(content::CertificateRequestResultType)>& | 145 const base::Callback<void(content::CertificateRequestResultType)>& |
| 146 callback) override; | 146 callback) override; |
| 147 void SelectClientCertificate( | 147 void SelectClientCertificate( |
| 148 content::WebContents* web_contents, | 148 content::WebContents* web_contents, |
| 149 net::SSLCertRequestInfo* cert_request_info, | 149 net::SSLCertRequestInfo* cert_request_info, |
| 150 net::CertificateList client_certs, |
| 150 std::unique_ptr<content::ClientCertificateDelegate> delegate) override; | 151 std::unique_ptr<content::ClientCertificateDelegate> delegate) override; |
| 151 bool CanCreateWindow(content::RenderFrameHost* opener, | 152 bool CanCreateWindow(content::RenderFrameHost* opener, |
| 152 const GURL& opener_url, | 153 const GURL& opener_url, |
| 153 const GURL& opener_top_level_frame_url, | 154 const GURL& opener_top_level_frame_url, |
| 154 const GURL& source_origin, | 155 const GURL& source_origin, |
| 155 content::mojom::WindowContainerType container_type, | 156 content::mojom::WindowContainerType container_type, |
| 156 const GURL& target_url, | 157 const GURL& target_url, |
| 157 const content::Referrer& referrer, | 158 const content::Referrer& referrer, |
| 158 const std::string& frame_name, | 159 const std::string& frame_name, |
| 159 WindowOpenDisposition disposition, | 160 WindowOpenDisposition disposition, |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 std::unique_ptr<media::MediaPipelineBackendFactory> | 211 std::unique_ptr<media::MediaPipelineBackendFactory> |
| 211 media_pipeline_backend_factory_; | 212 media_pipeline_backend_factory_; |
| 212 | 213 |
| 213 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); | 214 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); |
| 214 }; | 215 }; |
| 215 | 216 |
| 216 } // namespace shell | 217 } // namespace shell |
| 217 } // namespace chromecast | 218 } // namespace chromecast |
| 218 | 219 |
| 219 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ | 220 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |