| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 const GURL& url, | 78 const GURL& url, |
| 79 const string16& name, | 79 const string16& name, |
| 80 const string16& display_name, | 80 const string16& display_name, |
| 81 unsigned long estimated_size, | 81 unsigned long estimated_size, |
| 82 content::ResourceContext* context, | 82 content::ResourceContext* context, |
| 83 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; | 83 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; |
| 84 virtual bool AllowWorkerFileSystem( | 84 virtual bool AllowWorkerFileSystem( |
| 85 const GURL& url, | 85 const GURL& url, |
| 86 content::ResourceContext* context, | 86 content::ResourceContext* context, |
| 87 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; | 87 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; |
| 88 virtual bool AllowWorkerIndexedDB( |
| 89 const GURL& url, |
| 90 const string16& name, |
| 91 content::ResourceContext* context, |
| 92 const std::vector<std::pair<int, int> >& render_views) OVERRIDE; |
| 88 virtual net::URLRequestContext* OverrideRequestContextForURL( | 93 virtual net::URLRequestContext* OverrideRequestContextForURL( |
| 89 const GURL& url, content::ResourceContext* context) OVERRIDE; | 94 const GURL& url, content::ResourceContext* context) OVERRIDE; |
| 90 virtual QuotaPermissionContext* CreateQuotaPermissionContext() OVERRIDE; | 95 virtual QuotaPermissionContext* CreateQuotaPermissionContext() OVERRIDE; |
| 91 virtual void OpenItem(const FilePath& path) OVERRIDE; | 96 virtual void OpenItem(const FilePath& path) OVERRIDE; |
| 92 virtual void ShowItemInFolder(const FilePath& path) OVERRIDE; | 97 virtual void ShowItemInFolder(const FilePath& path) OVERRIDE; |
| 93 virtual void AllowCertificateError( | 98 virtual void AllowCertificateError( |
| 94 int render_process_id, | 99 int render_process_id, |
| 95 int render_view_id, | 100 int render_view_id, |
| 96 int cert_error, | 101 int cert_error, |
| 97 const net::SSLInfo& ssl_info, | 102 const net::SSLInfo& ssl_info, |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 const GURL& url) OVERRIDE; | 177 const GURL& url) OVERRIDE; |
| 173 #endif | 178 #endif |
| 174 | 179 |
| 175 private: | 180 private: |
| 176 ShellBrowserMainParts* shell_browser_main_parts_; | 181 ShellBrowserMainParts* shell_browser_main_parts_; |
| 177 }; | 182 }; |
| 178 | 183 |
| 179 } // namespace content | 184 } // namespace content |
| 180 | 185 |
| 181 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 186 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |