OLD | NEW |
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 WebContents* web_contents) override; | 48 WebContents* web_contents) override; |
49 QuotaPermissionContext* CreateQuotaPermissionContext() override; | 49 QuotaPermissionContext* CreateQuotaPermissionContext() override; |
50 void SelectClientCertificate( | 50 void SelectClientCertificate( |
51 WebContents* web_contents, | 51 WebContents* web_contents, |
52 net::SSLCertRequestInfo* cert_request_info, | 52 net::SSLCertRequestInfo* cert_request_info, |
53 std::unique_ptr<ClientCertificateDelegate> delegate) override; | 53 std::unique_ptr<ClientCertificateDelegate> delegate) override; |
54 | 54 |
55 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() | 55 SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() |
56 override; | 56 override; |
57 net::NetLog* GetNetLog() override; | 57 net::NetLog* GetNetLog() override; |
58 bool ShouldSwapProcessesForRedirect(ResourceContext* resource_context, | 58 bool ShouldSwapProcessesForRedirect(BrowserContext* browser_context, |
59 const GURL& current_url, | 59 const GURL& current_url, |
60 const GURL& new_url) override; | 60 const GURL& new_url) override; |
61 DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; | 61 DevToolsManagerDelegate* GetDevToolsManagerDelegate() override; |
62 | 62 |
63 void OpenURL(BrowserContext* browser_context, | 63 void OpenURL(BrowserContext* browser_context, |
64 const OpenURLParams& params, | 64 const OpenURLParams& params, |
65 const base::Callback<void(WebContents*)>& callback) override; | 65 const base::Callback<void(WebContents*)>& callback) override; |
66 | 66 |
67 #if defined(OS_ANDROID) | 67 #if defined(OS_ANDROID) |
68 void GetAdditionalMappedFilesForChildProcess( | 68 void GetAdditionalMappedFilesForChildProcess( |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_ |
OLD | NEW |