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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; | 141 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; |
142 virtual bool AllowWorkerFileSystem( | 142 virtual bool AllowWorkerFileSystem( |
143 const GURL& url, | 143 const GURL& url, |
144 content::ResourceContext* context, | 144 content::ResourceContext* context, |
145 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; | 145 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; |
146 virtual bool AllowWorkerIndexedDB( | 146 virtual bool AllowWorkerIndexedDB( |
147 const GURL& url, | 147 const GURL& url, |
148 const string16& name, | 148 const string16& name, |
149 content::ResourceContext* context, | 149 content::ResourceContext* context, |
150 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; | 150 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; |
151 virtual net::URLRequestContext* OverrideRequestContextForURL( | 151 virtual net::CookieStore* OverrideCookieStoreForURL( |
152 const GURL& url, content::ResourceContext* context) OVERRIDE; | 152 const GURL& url, content::ResourceContext* context) OVERRIDE; |
153 virtual content::QuotaPermissionContext* | 153 virtual content::QuotaPermissionContext* |
154 CreateQuotaPermissionContext() OVERRIDE; | 154 CreateQuotaPermissionContext() OVERRIDE; |
155 virtual void AllowCertificateError( | 155 virtual void AllowCertificateError( |
156 int render_process_id, | 156 int render_process_id, |
157 int render_view_id, | 157 int render_view_id, |
158 int cert_error, | 158 int cert_error, |
159 const net::SSLInfo& ssl_info, | 159 const net::SSLInfo& ssl_info, |
160 const GURL& request_url, | 160 const GURL& request_url, |
161 ResourceType::Type resource_type, | 161 ResourceType::Type resource_type, |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 // Cached version of the locale so we can return the locale on the I/O | 265 // Cached version of the locale so we can return the locale on the I/O |
266 // thread. | 266 // thread. |
267 std::string io_thread_application_locale_; | 267 std::string io_thread_application_locale_; |
268 | 268 |
269 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 269 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
270 }; | 270 }; |
271 | 271 |
272 } // namespace chrome | 272 } // namespace chrome |
273 | 273 |
274 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 274 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
OLD | NEW |