| 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_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 const GURL& request_url, | 184 const GURL& request_url, |
| 185 content::ResourceType resource_type, | 185 content::ResourceType resource_type, |
| 186 bool overridable, | 186 bool overridable, |
| 187 bool strict_enforcement, | 187 bool strict_enforcement, |
| 188 bool expired_previous_decision, | 188 bool expired_previous_decision, |
| 189 const base::Callback<void(content::CertificateRequestResultType)>& | 189 const base::Callback<void(content::CertificateRequestResultType)>& |
| 190 callback) override; | 190 callback) override; |
| 191 void SelectClientCertificate( | 191 void SelectClientCertificate( |
| 192 content::WebContents* web_contents, | 192 content::WebContents* web_contents, |
| 193 net::SSLCertRequestInfo* cert_request_info, | 193 net::SSLCertRequestInfo* cert_request_info, |
| 194 net::CertificateList client_certs, | 194 net::ClientCertIdentityList client_certs, |
| 195 std::unique_ptr<content::ClientCertificateDelegate> delegate) override; | 195 std::unique_ptr<content::ClientCertificateDelegate> delegate) override; |
| 196 content::MediaObserver* GetMediaObserver() override; | 196 content::MediaObserver* GetMediaObserver() override; |
| 197 content::PlatformNotificationService* GetPlatformNotificationService() | 197 content::PlatformNotificationService* GetPlatformNotificationService() |
| 198 override; | 198 override; |
| 199 bool CanCreateWindow(content::RenderFrameHost* opener, | 199 bool CanCreateWindow(content::RenderFrameHost* opener, |
| 200 const GURL& opener_url, | 200 const GURL& opener_url, |
| 201 const GURL& opener_top_level_frame_url, | 201 const GURL& opener_top_level_frame_url, |
| 202 const GURL& source_origin, | 202 const GURL& source_origin, |
| 203 content::mojom::WindowContainerType container_type, | 203 content::mojom::WindowContainerType container_type, |
| 204 const GURL& target_url, | 204 const GURL& target_url, |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 std::vector<ChromeContentBrowserClientParts*> extra_parts_; | 379 std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| 380 | 380 |
| 381 service_manager::BinderRegistry gpu_binder_registry_; | 381 service_manager::BinderRegistry gpu_binder_registry_; |
| 382 | 382 |
| 383 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; | 383 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| 384 | 384 |
| 385 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 385 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 386 }; | 386 }; |
| 387 | 387 |
| 388 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 388 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |