| 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 16 matching lines...) Expand all Loading... |
| 27 virtual BrowserMainParts* CreateBrowserMainParts( | 27 virtual BrowserMainParts* CreateBrowserMainParts( |
| 28 const MainFunctionParams& parameters) OVERRIDE; | 28 const MainFunctionParams& parameters) OVERRIDE; |
| 29 virtual void RenderProcessHostCreated(RenderProcessHost* host) OVERRIDE; | 29 virtual void RenderProcessHostCreated(RenderProcessHost* host) OVERRIDE; |
| 30 virtual net::URLRequestContextGetter* CreateRequestContext( | 30 virtual net::URLRequestContextGetter* CreateRequestContext( |
| 31 BrowserContext* browser_context, | 31 BrowserContext* browser_context, |
| 32 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 32 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 33 blob_protocol_handler, | 33 blob_protocol_handler, |
| 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, | |
| 38 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | |
| 39 chrome_protocol_handler, | 37 chrome_protocol_handler, |
| 40 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 38 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 41 chrome_devtools_protocol_handler) OVERRIDE; | 39 chrome_devtools_protocol_handler) OVERRIDE; |
| 42 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 40 virtual net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 43 BrowserContext* browser_context, | 41 BrowserContext* browser_context, |
| 44 const base::FilePath& partition_path, | 42 const base::FilePath& partition_path, |
| 45 bool in_memory, | 43 bool in_memory, |
| 46 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 44 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 47 blob_protocol_handler, | 45 blob_protocol_handler, |
| 48 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 46 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 49 file_system_protocol_handler, | 47 file_system_protocol_handler, |
| 50 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 48 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 51 developer_protocol_handler, | |
| 52 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | |
| 53 chrome_protocol_handler, | 49 chrome_protocol_handler, |
| 54 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> | 50 scoped_ptr<net::URLRequestJobFactory::ProtocolHandler> |
| 55 chrome_devtools_protocol_handler) OVERRIDE; | 51 chrome_devtools_protocol_handler) OVERRIDE; |
| 56 virtual void AppendExtraCommandLineSwitches(CommandLine* command_line, | 52 virtual void AppendExtraCommandLineSwitches(CommandLine* command_line, |
| 57 int child_process_id) OVERRIDE; | 53 int child_process_id) OVERRIDE; |
| 58 virtual void OverrideWebkitPrefs(RenderViewHost* render_view_host, | 54 virtual void OverrideWebkitPrefs(RenderViewHost* render_view_host, |
| 59 const GURL& url, | 55 const GURL& url, |
| 60 webkit_glue::WebPreferences* prefs) OVERRIDE; | 56 webkit_glue::WebPreferences* prefs) OVERRIDE; |
| 61 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 57 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
| 62 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 58 virtual AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 88 resource_dispatcher_host_delegate_; | 84 resource_dispatcher_host_delegate_; |
| 89 | 85 |
| 90 base::FilePath webkit_source_dir_; | 86 base::FilePath webkit_source_dir_; |
| 91 | 87 |
| 92 ShellBrowserMainParts* shell_browser_main_parts_; | 88 ShellBrowserMainParts* shell_browser_main_parts_; |
| 93 }; | 89 }; |
| 94 | 90 |
| 95 } // namespace content | 91 } // namespace content |
| 96 | 92 |
| 97 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ | 93 #endif // CONTENT_SHELL_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |