| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; | 144 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; |
| 145 virtual bool AllowWorkerFileSystem( | 145 virtual bool AllowWorkerFileSystem( |
| 146 const GURL& url, | 146 const GURL& url, |
| 147 content::ResourceContext* context, | 147 content::ResourceContext* context, |
| 148 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; | 148 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; |
| 149 virtual bool AllowWorkerIndexedDB( | 149 virtual bool AllowWorkerIndexedDB( |
| 150 const GURL& url, | 150 const GURL& url, |
| 151 const string16& name, | 151 const string16& name, |
| 152 content::ResourceContext* context, | 152 content::ResourceContext* context, |
| 153 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; | 153 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; |
| 154 virtual net::URLRequestContext* OverrideRequestContextForURL( | 154 virtual void OverrideCookieStoreMap( |
| 155 const GURL& url, content::ResourceContext* context) OVERRIDE; | 155 content::BrowserContext* browser_context, |
| 156 bool in_memory, |
| 157 const base::FilePath& partition_path, |
| 158 bool is_default, |
| 159 content::CookieStoreMap* cookie_store_map) OVERRIDE; |
| 156 virtual content::QuotaPermissionContext* | 160 virtual content::QuotaPermissionContext* |
| 157 CreateQuotaPermissionContext() OVERRIDE; | 161 CreateQuotaPermissionContext() OVERRIDE; |
| 158 virtual void AllowCertificateError( | 162 virtual void AllowCertificateError( |
| 159 int render_process_id, | 163 int render_process_id, |
| 160 int render_view_id, | 164 int render_view_id, |
| 161 int cert_error, | 165 int cert_error, |
| 162 const net::SSLInfo& ssl_info, | 166 const net::SSLInfo& ssl_info, |
| 163 const GURL& request_url, | 167 const GURL& request_url, |
| 164 ResourceType::Type resource_type, | 168 ResourceType::Type resource_type, |
| 165 bool overridable, | 169 bool overridable, |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 #endif | 282 #endif |
| 279 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> | 283 scoped_ptr<extensions::BrowserPermissionsPolicyDelegate> |
| 280 permissions_policy_delegate_; | 284 permissions_policy_delegate_; |
| 281 | 285 |
| 282 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); | 286 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |
| 283 }; | 287 }; |
| 284 | 288 |
| 285 } // namespace chrome | 289 } // namespace chrome |
| 286 | 290 |
| 287 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ | 291 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |