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

Side by Side Diff: content/shell/browser/shell_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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 WebContentsViewDelegate* GetWebContentsViewDelegate( 49 WebContentsViewDelegate* GetWebContentsViewDelegate(
50 WebContents* web_contents) override; 50 WebContents* web_contents) override;
51 QuotaPermissionContext* CreateQuotaPermissionContext() override; 51 QuotaPermissionContext* CreateQuotaPermissionContext() override;
52 void GetQuotaSettings( 52 void GetQuotaSettings(
53 content::BrowserContext* context, 53 content::BrowserContext* context,
54 content::StoragePartition* partition, 54 content::StoragePartition* partition,
55 const storage::OptionalQuotaSettingsCallback& callback) override; 55 const storage::OptionalQuotaSettingsCallback& callback) override;
56 void SelectClientCertificate( 56 void SelectClientCertificate(
57 WebContents* web_contents, 57 WebContents* web_contents,
58 net::SSLCertRequestInfo* cert_request_info, 58 net::SSLCertRequestInfo* cert_request_info,
59 net::CertificateList client_certs, 59 net::ClientCertIdentityList client_certs,
60 std::unique_ptr<ClientCertificateDelegate> delegate) override; 60 std::unique_ptr<ClientCertificateDelegate> delegate) override;
61 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() 61 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate()
62 override; 62 override;
63 net::NetLog* GetNetLog() override; 63 net::NetLog* GetNetLog() override;
64 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context, 64 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context,
65 const GURL& current_url, 65 const GURL& current_url,
66 const GURL& new_url) override; 66 const GURL& new_url) override;
67 DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; 67 DevToolsManagerDelegate* GetDevToolsManagerDelegate() override;
68 68
69 void OpenURL(BrowserContext* browser_context, 69 void OpenURL(BrowserContext* browser_context,
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 resource_dispatcher_host_delegate_; 110 resource_dispatcher_host_delegate_;
111 111
112 base::Closure select_client_certificate_callback_; 112 base::Closure select_client_certificate_callback_;
113 113
114 ShellBrowserMainParts* shell_browser_main_parts_; 114 ShellBrowserMainParts* shell_browser_main_parts_;
115 }; 115 };
116 116
117 } // namespace content 117 } // namespace content
118 118
119 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ 119 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « content/public/browser/content_browser_client.cc ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698