| 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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 34 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 35 file_system_protocol_handler, | 35 file_system_protocol_handler, |
| 36 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 36 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 37 developer_protocol_handler, | 37 developer_protocol_handler, |
| 38 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 38 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 39 chrome_protocol_handler, | 39 chrome_protocol_handler, |
| 40 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 40 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 41 chrome_devtools_protocol_handler) OVERRIDE; | 41 chrome_devtools_protocol_handler) OVERRIDE; |
| 42 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 42 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 43 BrowserContext* browser_context, | 43 BrowserContext* browser_context, |
| 44 const FilePath& partition_path, | 44 const base::FilePath& partition_path, |
| 45 bool in_memory, | 45 bool in_memory, |
| 46 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 46 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 47 blob_protocol_handler, | 47 blob_protocol_handler, |
| 48 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 48 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 49 file_system_protocol_handler, | 49 file_system_protocol_handler, |
| 50 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 50 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 51 developer_protocol_handler, | 51 developer_protocol_handler, |
| 52 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 52 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 53 chrome_protocol_handler, | 53 chrome_protocol_handler, |
| 54 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 54 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 resource_dispatcher_host_delegate_; | 88 resource_dispatcher_host_delegate_; |
| 89 | 89 |
| 90 base::FilePath webkit_source_dir_; | 90 base::FilePath webkit_source_dir_; |
| 91 | 91 |
| 92 ShellBrowserMainParts* shell_browser_main_parts_; | 92 ShellBrowserMainParts* shell_browser_main_parts_; |
| 93 }; | 93 }; |
| 94 | 94 |
| 95 } // namespace content | 95 } // namespace content |
| 96 | 96 |
| 97 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 97 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |