Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(818)

Side by Side Diff: chrome/browser/chrome_content_browser_client.h

Issue 2898573002: Refactor client cert private key handling. (Closed)
Patch Set: removed no longer needed forward declaration Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 std::vector<ChromeContentBrowserClientParts*> extra_parts_; 372 std::vector<ChromeContentBrowserClientParts*> extra_parts_;
373 373
374 service_manager::BinderRegistry gpu_binder_registry_; 374 service_manager::BinderRegistry gpu_binder_registry_;
375 375
376 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; 376 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_;
377 377
378 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 378 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
379 }; 379 };
380 380
381 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 381 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « android_webview/browser/aw_contents_client_bridge_unittest.cc ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698