| 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 28 matching lines...) Expand all Loading... |
| 39 BrowserContext* browser_context, | 39 BrowserContext* browser_context, |
| 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; | |
| 50 void RegisterInProcessMojoApplications( | 49 void RegisterInProcessMojoApplications( |
| 51 StaticMojoApplicationMap* apps) override; | 50 StaticMojoApplicationMap* apps) override; |
| 52 void RegisterOutOfProcessMojoApplications( | 51 void RegisterOutOfProcessMojoApplications( |
| 53 OutOfProcessMojoApplicationMap* apps) override; | 52 OutOfProcessMojoApplicationMap* apps) override; |
| 54 void AppendExtraCommandLineSwitches(base::CommandLine* command_line, | 53 void AppendExtraCommandLineSwitches(base::CommandLine* command_line, |
| 55 int child_process_id) override; | 54 int child_process_id) override; |
| 56 void ResourceDispatcherHostCreated() override; | 55 void ResourceDispatcherHostCreated() override; |
| 57 AccessTokenStore* CreateAccessTokenStore() override; | 56 AccessTokenStore* CreateAccessTokenStore() override; |
| 58 std::string GetDefaultDownloadName() override; | 57 std::string GetDefaultDownloadName() override; |
| 59 WebContentsViewDelegate* GetWebContentsViewDelegate( | 58 WebContentsViewDelegate* GetWebContentsViewDelegate( |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 resource_dispatcher_host_delegate_; | 124 resource_dispatcher_host_delegate_; |
| 126 | 125 |
| 127 base::Closure select_client_certificate_callback_; | 126 base::Closure select_client_certificate_callback_; |
| 128 | 127 |
| 129 ShellBrowserMainParts* shell_browser_main_parts_; | 128 ShellBrowserMainParts* shell_browser_main_parts_; |
| 130 }; | 129 }; |
| 131 | 130 |
| 132 } // namespace content | 131 } // namespace content |
| 133 | 132 |
| 134 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ | 133 #endif // CONTENT_SHELL_BROWSER_SHELL_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |