| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 6 #define CONTENT_SHELL_BROWSER_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 29 matching lines...) Expand all Loading... |
| 40 ProtocolHandlerMap* protocol_handlers, | 40 ProtocolHandlerMap* protocol_handlers, |
| 41 URLRequestInterceptorScopedVector request_interceptors) override; | 41 URLRequestInterceptorScopedVector request_interceptors) override; |
| 42 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 42 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 43 BrowserContext* browser_context, | 43 BrowserContext* browser_context, |
| 44 const base::FilePath& partition_path, | 44 const base::FilePath& partition_path, |
| 45 bool in_memory, | 45 bool in_memory, |
| 46 ProtocolHandlerMap* protocol_handlers, | 46 ProtocolHandlerMap* protocol_handlers, |
| 47 URLRequestInterceptorScopedVector request_interceptors) override; | 47 URLRequestInterceptorScopedVector request_interceptors) override; |
| 48 bool IsHandledURL(const GURL& url) override; | 48 bool IsHandledURL(const GURL& url) override; |
| 49 bool IsNPAPIEnabled() override; | 49 bool IsNPAPIEnabled() override; |
| 50 void RegisterInProcessMojoApplications( |
| 51 StaticMojoApplicationMap* apps) override; |
| 50 void RegisterOutOfProcessMojoApplications( | 52 void RegisterOutOfProcessMojoApplications( |
| 51 OutOfProcessMojoApplicationMap* apps) override; | 53 OutOfProcessMojoApplicationMap* apps) override; |
| 52 void AppendExtraCommandLineSwitches(base::CommandLine* command_line, | 54 void AppendExtraCommandLineSwitches(base::CommandLine* command_line, |
| 53 int child_process_id) override; | 55 int child_process_id) override; |
| 54 void OverrideWebkitPrefs(RenderViewHost* render_view_host, | 56 void OverrideWebkitPrefs(RenderViewHost* render_view_host, |
| 55 WebPreferences* prefs) override; | 57 WebPreferences* prefs) override; |
| 56 void ResourceDispatcherHostCreated() override; | 58 void ResourceDispatcherHostCreated() override; |
| 57 AccessTokenStore* CreateAccessTokenStore() override; | 59 AccessTokenStore* CreateAccessTokenStore() override; |
| 58 std::string GetDefaultDownloadName() override; | 60 std::string GetDefaultDownloadName() override; |
| 59 WebContentsViewDelegate* GetWebContentsViewDelegate( | 61 WebContentsViewDelegate* GetWebContentsViewDelegate( |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 resource_dispatcher_host_delegate_; | 117 resource_dispatcher_host_delegate_; |
| 116 | 118 |
| 117 base::Closure select_client_certificate_callback_; | 119 base::Closure select_client_certificate_callback_; |
| 118 | 120 |
| 119 ShellBrowserMainParts* shell_browser_main_parts_; | 121 ShellBrowserMainParts* shell_browser_main_parts_; |
| 120 }; | 122 }; |
| 121 | 123 |
| 122 } // namespace content | 124 } // namespace content |
| 123 | 125 |
| 124 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 126 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |