| 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 CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 int render_view_id, | 93 int render_view_id, |
| 94 int cert_error, | 94 int cert_error, |
| 95 const net::SSLInfo& ssl_info, | 95 const net::SSLInfo& ssl_info, |
| 96 const GURL& request_url, | 96 const GURL& request_url, |
| 97 bool overridable, | 97 bool overridable, |
| 98 const base::Callback<void(bool)>& callback, | 98 const base::Callback<void(bool)>& callback, |
| 99 bool* cancel_request) OVERRIDE; | 99 bool* cancel_request) OVERRIDE; |
| 100 virtual void SelectClientCertificate( | 100 virtual void SelectClientCertificate( |
| 101 int render_process_id, | 101 int render_process_id, |
| 102 int render_view_id, | 102 int render_view_id, |
| 103 SSLClientAuthHandler* handler) OVERRIDE; | 103 const net::HttpNetworkSession* network_session, |
| 104 net::SSLCertRequestInfo* cert_request_info, |
| 105 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE; |
| 104 virtual void AddNewCertificate( | 106 virtual void AddNewCertificate( |
| 105 net::URLRequest* request, | 107 net::URLRequest* request, |
| 106 net::X509Certificate* cert, | 108 net::X509Certificate* cert, |
| 107 int render_process_id, | 109 int render_process_id, |
| 108 int render_view_id) OVERRIDE; | 110 int render_view_id) OVERRIDE; |
| 109 virtual void RequestDesktopNotificationPermission( | 111 virtual void RequestDesktopNotificationPermission( |
| 110 const GURL& source_origin, | 112 const GURL& source_origin, |
| 111 int callback_context, | 113 int callback_context, |
| 112 int render_process_id, | 114 int render_process_id, |
| 113 int render_view_id) OVERRIDE; | 115 int render_view_id) OVERRIDE; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 const GURL& url) OVERRIDE; | 167 const GURL& url) OVERRIDE; |
| 166 #endif | 168 #endif |
| 167 | 169 |
| 168 private: | 170 private: |
| 169 ShellBrowserMainParts* shell_browser_main_parts_; | 171 ShellBrowserMainParts* shell_browser_main_parts_; |
| 170 }; | 172 }; |
| 171 | 173 |
| 172 } // namespace content | 174 } // namespace content |
| 173 | 175 |
| 174 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 176 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |