| 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 net::SSLCertRequestInfo* cert_request_info, | 143 net::SSLCertRequestInfo* cert_request_info, |
| 144 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE; | 144 const base::Callback<void(net::X509Certificate*)>& callback) OVERRIDE; |
| 145 virtual void AddCertificate( | 145 virtual void AddCertificate( |
| 146 net::URLRequest* request, | 146 net::URLRequest* request, |
| 147 net::CertificateMimeType cert_type, | 147 net::CertificateMimeType cert_type, |
| 148 const void* cert_data, | 148 const void* cert_data, |
| 149 size_t cert_size, | 149 size_t cert_size, |
| 150 int render_process_id, | 150 int render_process_id, |
| 151 int render_view_id) OVERRIDE; | 151 int render_view_id) OVERRIDE; |
| 152 virtual content::MediaObserver* GetMediaObserver() OVERRIDE; | 152 virtual content::MediaObserver* GetMediaObserver() OVERRIDE; |
| 153 virtual content::WebRTCInternals* GetWebRTCInternals() OVERRIDE; |
| 153 virtual void RequestDesktopNotificationPermission( | 154 virtual void RequestDesktopNotificationPermission( |
| 154 const GURL& source_origin, | 155 const GURL& source_origin, |
| 155 int callback_context, | 156 int callback_context, |
| 156 int render_process_id, | 157 int render_process_id, |
| 157 int render_view_id) OVERRIDE; | 158 int render_view_id) OVERRIDE; |
| 158 virtual WebKit::WebNotificationPresenter::Permission | 159 virtual WebKit::WebNotificationPresenter::Permission |
| 159 CheckDesktopNotificationPermission( | 160 CheckDesktopNotificationPermission( |
| 160 const GURL& source_origin, | 161 const GURL& source_origin, |
| 161 content::ResourceContext* context, | 162 content::ResourceContext* context, |
| 162 int render_process_id) OVERRIDE; | 163 int render_process_id) OVERRIDE; |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 // Cached version of the locale so we can return the locale on the I/O | 237 // Cached version of the locale so we can return the locale on the I/O |
| 237 // thread. | 238 // thread. |
| 238 std::string io_thread_application_locale_; | 239 std::string io_thread_application_locale_; |
| 239 | 240 |
| 240 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 241 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 241 }; | 242 }; |
| 242 | 243 |
| 243 } // namespace chrome | 244 } // namespace chrome |
| 244 | 245 |
| 245 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 246 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |