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 #include "chrome/browser/chrome_content_browser_client.h" | 5 #include "chrome/browser/chrome_content_browser_client.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 #include <utility> | 8 #include <utility> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 1057 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1068 // view-source is allowed for these schemes. | 1068 // view-source is allowed for these schemes. |
1069 void ChromeContentBrowserClient::GetAdditionalWebUISchemes( | 1069 void ChromeContentBrowserClient::GetAdditionalWebUISchemes( |
1070 std::vector<std::string>* additional_schemes) { | 1070 std::vector<std::string>* additional_schemes) { |
1071 additional_schemes->push_back(chrome::kChromeSearchScheme); | 1071 additional_schemes->push_back(chrome::kChromeSearchScheme); |
1072 additional_schemes->push_back(chrome::kDomDistillerScheme); | 1072 additional_schemes->push_back(chrome::kDomDistillerScheme); |
1073 } | 1073 } |
1074 | 1074 |
1075 net::URLRequestContextGetter* | 1075 net::URLRequestContextGetter* |
1076 ChromeContentBrowserClient::CreateRequestContext( | 1076 ChromeContentBrowserClient::CreateRequestContext( |
1077 content::BrowserContext* browser_context, | 1077 content::BrowserContext* browser_context, |
1078 content::ProtocolHandlerMap* protocol_handlers) { | 1078 content::ProtocolHandlerMap* protocol_handlers, |
| 1079 content::ProtocolHandlerScopedVector protocol_interceptors) { |
1079 Profile* profile = Profile::FromBrowserContext(browser_context); | 1080 Profile* profile = Profile::FromBrowserContext(browser_context); |
1080 return profile->CreateRequestContext(protocol_handlers); | 1081 return profile->CreateRequestContext( |
| 1082 protocol_handlers, protocol_interceptors.Pass()); |
1081 } | 1083 } |
1082 | 1084 |
1083 net::URLRequestContextGetter* | 1085 net::URLRequestContextGetter* |
1084 ChromeContentBrowserClient::CreateRequestContextForStoragePartition( | 1086 ChromeContentBrowserClient::CreateRequestContextForStoragePartition( |
1085 content::BrowserContext* browser_context, | 1087 content::BrowserContext* browser_context, |
1086 const base::FilePath& partition_path, | 1088 const base::FilePath& partition_path, |
1087 bool in_memory, | 1089 bool in_memory, |
1088 content::ProtocolHandlerMap* protocol_handlers) { | 1090 content::ProtocolHandlerMap* protocol_handlers, |
| 1091 content::ProtocolHandlerScopedVector protocol_interceptors) { |
1089 Profile* profile = Profile::FromBrowserContext(browser_context); | 1092 Profile* profile = Profile::FromBrowserContext(browser_context); |
1090 return profile->CreateRequestContextForStoragePartition( | 1093 return profile->CreateRequestContextForStoragePartition( |
1091 partition_path, in_memory, protocol_handlers); | 1094 partition_path, in_memory, |
| 1095 protocol_handlers, protocol_interceptors.Pass()); |
1092 } | 1096 } |
1093 | 1097 |
1094 bool ChromeContentBrowserClient::IsHandledURL(const GURL& url) { | 1098 bool ChromeContentBrowserClient::IsHandledURL(const GURL& url) { |
1095 return ProfileIOData::IsHandledURL(url); | 1099 return ProfileIOData::IsHandledURL(url); |
1096 } | 1100 } |
1097 | 1101 |
1098 bool ChromeContentBrowserClient::CanCommitURL( | 1102 bool ChromeContentBrowserClient::CanCommitURL( |
1099 content::RenderProcessHost* process_host, | 1103 content::RenderProcessHost* process_host, |
1100 const GURL& url) { | 1104 const GURL& url) { |
1101 // We need to let most extension URLs commit in any process, since this can | 1105 // We need to let most extension URLs commit in any process, since this can |
(...skipping 1626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2728 switches::kDisableWebRtcEncryption, | 2732 switches::kDisableWebRtcEncryption, |
2729 }; | 2733 }; |
2730 to_command_line->CopySwitchesFrom(from_command_line, | 2734 to_command_line->CopySwitchesFrom(from_command_line, |
2731 kWebRtcDevSwitchNames, | 2735 kWebRtcDevSwitchNames, |
2732 arraysize(kWebRtcDevSwitchNames)); | 2736 arraysize(kWebRtcDevSwitchNames)); |
2733 } | 2737 } |
2734 } | 2738 } |
2735 #endif // defined(ENABLE_WEBRTC) | 2739 #endif // defined(ENABLE_WEBRTC) |
2736 | 2740 |
2737 } // namespace chrome | 2741 } // namespace chrome |
OLD | NEW |